From 535ef1a59188157302fbd36de9e27e7d5f1bf39c Mon Sep 17 00:00:00 2001 From: Alessandro Attard Barbini Date: Sat, 14 Oct 2017 00:28:13 +0200 Subject: [PATCH] Update TrackTime on connection as well --- Toastify/src/View/ToastView.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Toastify/src/View/ToastView.xaml.cs b/Toastify/src/View/ToastView.xaml.cs index 87e5efc..4769533 100644 --- a/Toastify/src/View/ToastView.xaml.cs +++ b/Toastify/src/View/ToastView.xaml.cs @@ -790,6 +790,7 @@ private void Spotify_Connected(object sender, SpotifyStateEventArgs e) this.paused = !e.Playing; this.UpdateCurrentSong(e.CurrentSong); + this.UpdateSongProgressBar(e.TrackTime); } private void Spotify_SongChanged(object sender, SpotifyTrackChangedEventArgs e)