ソースを参照

Add old BeatDrop install playlist folder.

Stephen Damm 6 年 前
コミット
e98c1c431f
1 ファイル変更2 行追加0 行削除
  1. 2 0
      SongBrowserPlugin/DataAccess/PlaylistReader.cs

+ 2 - 0
SongBrowserPlugin/DataAccess/PlaylistReader.cs

@@ -30,8 +30,10 @@ namespace SongBrowserPlugin.DataAccess
             // Hack, add beatdrop location
             String localAppDataPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
             String beatDropPlaylistPath = Path.Combine(localAppDataPath, "Programs", "BeatDrop", "playlists");
+            String beatDropCuratorPlaylistPath = Path.Combine(localAppDataPath, "Programs", "BeatDropCurator", "playlists");
 
             _PlaylistsDirectories.Add(beatDropPlaylistPath);
+            _PlaylistsDirectories.Add(beatDropCuratorPlaylistPath);
         }
         
         public void UpdatePlaylists()