Debug update a playlist

This commit is contained in:
pleb
2026-04-18 21:52:18 -07:00
parent 2ad7b50f65
commit 7301c10aa9
6 changed files with 272 additions and 8 deletions
+3 -2
View File
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using BeatSaberPlaylistsLib.Types;
using IPA;
using IPALogger = IPA.Logging.Logger;
@@ -46,7 +47,7 @@ namespace Setlist
return;
}
var entries = new List<(string Title, bool HasSyncUrl, string BeatLeaderGuid, string OwnerId)>();
var entries = new List<(IPlaylist Playlist, string Title, bool HasSyncUrl, string BeatLeaderGuid, string OwnerId)>();
foreach (var playlist in playlists)
{
var hasSyncUrl = false;
@@ -69,7 +70,7 @@ namespace Setlist
blGuid = g;
}
entries.Add((playlist.Title, hasSyncUrl, blGuid, ownerId));
entries.Add((playlist, playlist.Title, hasSyncUrl, blGuid, ownerId));
}
BeatLeaderPlaylistOwnership.ScheduleVerifyAndLog(entries, Log);