Skip to content

Commit

Permalink
Lasttest
Browse files Browse the repository at this point in the history
  • Loading branch information
YBTopaz8 committed Jan 1, 2025
1 parent 97f45de commit 5f65633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dimmer/ViewModels/PlaylistSection.HomePageVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public async Task UpdatePlayList(SongModelView song, PlaylistModelView playlistM
SelectedPlaylist = DisplayedPlaylists.FirstOrDefault(x => x.LocalDeviceId == playlistModel.LocalDeviceId!);
if (SelectedPlaylist is not null)
{
PlayBackService.RemoveSongFromPlayListWithPlayListID(song, SelectedPlaylist.LocalDeviceId);
PlayBackService.RemoveSongFromPlayListWithPlayListID(song, SelectedPlaylist.LocalDeviceId!);
var toast = Toast.Make(songDeletedFromPlaylistText, duration);
await toast.Show(cts.Token);
}
Expand Down

0 comments on commit 5f65633

Please sign in to comment.