add cfg file setting to skip SSL verification

This commit is contained in:
Drew Weymouth
2024-07-28 08:22:07 -07:00
parent c3d3cf92a7
commit 1f8e8d2936
2 changed files with 15 additions and 0 deletions
+2
View File
@@ -46,6 +46,7 @@ type AppConfig struct {
DefaultPlaylistID string
ShowTrackChangeNotification bool
EnableLrcLib bool
SkipSSLVerify bool
// Experimental - may be removed in future
FontNormalTTF string
@@ -170,6 +171,7 @@ func DefaultConfig(appVersionTag string) *Config {
SaveQueueToServer: false,
ShowTrackChangeNotification: false,
EnableLrcLib: true,
SkipSSLVerify: false,
},
AlbumPage: AlbumPageConfig{
TracklistColumns: []string{"Artist", "Time", "Plays", "Favorite", "Rating"},