From 41010515eebb9ae5c12847921f7fe715f0692ede Mon Sep 17 00:00:00 2001 From: Deluan Date: Sat, 16 May 2020 19:16:48 -0400 Subject: [PATCH] Enable Playlist Management in the UI by default --- conf/configuration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/configuration.go b/conf/configuration.go index f7f958c10..d5acfd024 100644 --- a/conf/configuration.go +++ b/conf/configuration.go @@ -36,7 +36,7 @@ type nd struct { // DevFlags. These are used to enable/disable debugging and incomplete features DevLogSourceLine bool `default:"false"` DevAutoCreateAdminPassword string `default:""` - DevEnableUIPlaylists bool `default:"false"` + DevEnableUIPlaylists bool `default:"true"` } var Server = &nd{}