Skip to content

Commit

Permalink
Hotfix: Selected Source is now probably working
Browse files Browse the repository at this point in the history
There was a bug that didn't autmatically start fetching Songs when the app launched, this should be fixed now
  • Loading branch information
Inzaniity committed Apr 19, 2019
1 parent 4cbe6d1 commit d9a183b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions Songify Slim/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,19 @@ private void MetroWindowLoaded(object sender, RoutedEventArgs e)
cbx_Source.SelectedIndex = selectedSource;
this.LblCopyright.Content = "Songify v" + Version.Substring(0, 5) + " Copyright © Jan \"Inzaniity\" Blömacher";


switch (selectedSource)
{
case 0:
FetchTimer(1000);
break;
case 1:
FetchTimer(3000);
break;
case 2:
FetchTimer(3000);
break;
}
}

private void TelemetryTimer()
Expand Down
4 changes: 2 additions & 2 deletions Songify Slim/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.5.0")]
[assembly: AssemblyFileVersion("1.0.5.0")]
[assembly: AssemblyVersion("1.0.6.0")]
[assembly: AssemblyFileVersion("1.0.6.0")]

0 comments on commit d9a183b

Please sign in to comment.