Skip to content

Commit 6570f82

Browse files
committed
Fixes typo while searching for secret #minor
1 parent 366e3b1 commit 6570f82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SpotifyNet.Cover/ViewModel/MainViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ private bool TryLoadSecrets(string fileName)
6464

6565
// Create default secret file and notify user about missing secrets
6666
// if the code is running without debugger
67-
fileInfo = new FileInfo("spotify.secrets");
67+
fileInfo = new FileInfo("spotify.secret");
6868
if (!fileInfo.Exists)
6969
{
7070
File.WriteAllText(fileInfo.FullName, JsonConvert.SerializeObject(new SpotifySecrets("", "")));
71-
MessageBox.Show($"Please fill in your Spotify secrets into the newly generated file at {fileInfo.FullName}", "Could not find Spotify secrets", MessageBoxButton.OK);
71+
MessageBox.Show($"Please fill in your Spotify secrets into the newly generated file at {fileInfo.FullName}", "Could not find Spotify secret", MessageBoxButton.OK);
7272
Environment.Exit(0);
7373
}
7474
}

0 commit comments

Comments
 (0)