Skip to content

Commit

Permalink
Committing the little fix that could (fixed exception with uid)
Browse files Browse the repository at this point in the history
  • Loading branch information
SB15-MD committed Jan 18, 2024
1 parent 046f7b8 commit 49cb011
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Patches/SavePatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,9 @@ private static void CleanCustomData()

if (DataHelper.selectedMusicUidFromInfoList.StartsWith($"{AlbumManager.Uid}-"))
{
DataHelper.selectedMusicUidFromInfoList = "0-0";
Logger.Msg(DataHelper.selectedMusicUidFromInfoList, false);
SaveData.SelectedAlbum = AlbumManager.GetAlbumNameFromUid(DataHelper.selectedMusicUidFromInfoList);
DataHelper.selectedMusicUidFromInfoList = "0-0";
}
else
{
Expand Down

0 comments on commit 49cb011

Please sign in to comment.