Browse Source

More fixes.

Stephen Damm 6 years ago
parent
commit
01f5bc03d6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      SongBrowserPlugin/DataAccess/SongBrowserSettings.cs

+ 2 - 2
SongBrowserPlugin/DataAccess/SongBrowserSettings.cs

@@ -137,7 +137,7 @@ namespace SongBrowserPlugin.DataAccess
                 {
                     Log.Exception("Unable to deserialize song browser settings file, using default settings: ", e);
                     retVal = new SongBrowserSettings();
-                    retVal.DisableSaving = true;
+                    retVal.DisableSavingSettings = true;
                 }
                 finally
                 {
@@ -181,7 +181,7 @@ namespace SongBrowserPlugin.DataAccess
         /// </summary>
         private void _Save(String path)
         {
-            if (this.DisableSaving)
+            if (this.DisableSavingSettings)
             {
                 Log.Info("Saving settings has been disabled...");
                 return;