diff --git a/Songify Slim/MainWindow.xaml.cs b/Songify Slim/MainWindow.xaml.cs index f9574b1d..408c089e 100644 --- a/Songify Slim/MainWindow.xaml.cs +++ b/Songify Slim/MainWindow.xaml.cs @@ -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() diff --git a/Songify Slim/Properties/AssemblyInfo.cs b/Songify Slim/Properties/AssemblyInfo.cs index 35e5769c..ccec44ab 100644 --- a/Songify Slim/Properties/AssemblyInfo.cs +++ b/Songify Slim/Properties/AssemblyInfo.cs @@ -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")]