add config setting for save queue to server

This commit is contained in:
Drew Weymouth
2024-04-16 17:26:46 -07:00
parent 4d6626b7f2
commit 8eeb2aa53a
2 changed files with 13 additions and 3 deletions
+3 -1
View File
@@ -42,6 +42,7 @@ type AppConfig struct {
AllowMultiInstance bool
MaxImageCacheSizeMB int
SavePlayQueue bool
SaveQueueToServer bool
DefaultPlaylistID string
ShowTrackChangeNotification bool
@@ -155,7 +156,8 @@ func DefaultConfig(appVersionTag string) *Config {
AllowMultiInstance: false,
MaxImageCacheSizeMB: 50,
UIScaleSize: "Normal",
SavePlayQueue: false,
SavePlayQueue: true,
SaveQueueToServer: false,
ShowTrackChangeNotification: false,
},
AlbumPage: AlbumPageConfig{