just don't bother with length

This commit is contained in:
Royce551 2021-06-06 21:06:36 -05:00
parent 193a64a905
commit 678d75b7e2

View file

@ -185,7 +185,7 @@ namespace FRESHMusicPlayer.Handlers.Integrations
var track = new Track(viewModel.Player.FilePath);
var x = new Dictionary<string, object>()
{
{"mpris:length", (double)Math.Round(viewModel.Player?.TotalTime.TotalMilliseconds * 1000) },
// {"mpris:length", (double)Math.Round(viewModel.Player?.TotalTime.TotalMilliseconds * 1000) },
{"xesam:artist", track.Artist.Split(Settings.DisplayValueSeparator) },
{"xesam:album", track.Album },
{"xesam:asText", track.Lyrics.UnsynchronizedLyrics },