Fix mistake

This commit is contained in:
Dean Herbert 2024-08-15 16:44:15 +09:00
parent 26da2c0637
commit 4b279ecaa8
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -787,7 +787,7 @@ public Task PlaylistItemChanged(MultiplayerPlaylistItem item)
StringBuilder exceptionText = new StringBuilder(); StringBuilder exceptionText = new StringBuilder();
exceptionText.AppendLine("MultiplayerClient test failure investigation"); exceptionText.AppendLine("MultiplayerClient test failure investigation");
exceptionText.AppendLine($"Exception : {exceptionText}"); exceptionText.AppendLine($"Exception : {ex.ToString()}");
exceptionText.AppendLine($"Lookup : {item.ID}"); exceptionText.AppendLine($"Lookup : {item.ID}");
exceptionText.AppendLine($"Items in Room.Playlist : {string.Join(',', Room.Playlist.Select(i => i.ID))}"); exceptionText.AppendLine($"Items in Room.Playlist : {string.Join(',', Room.Playlist.Select(i => i.ID))}");
exceptionText.AppendLine($"Items in APIRoom.Playlist: {string.Join(',', APIRoom!.Playlist.Select(i => i.ID))}"); exceptionText.AppendLine($"Items in APIRoom.Playlist: {string.Join(',', APIRoom!.Playlist.Select(i => i.ID))}");