From 0ae8969dd39c6a261d3c87549578e55d7da5b1f2 Mon Sep 17 00:00:00 2001 From: Robb Ebright Date: Wed, 31 Oct 2018 08:06:59 -0400 Subject: [PATCH] Modified the database to turn on the podcast album override by default --- airtime_mvc/build/sql/defaultdata.sql | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/airtime_mvc/build/sql/defaultdata.sql b/airtime_mvc/build/sql/defaultdata.sql index 466420208..818276196 100644 --- a/airtime_mvc/build/sql/defaultdata.sql +++ b/airtime_mvc/build/sql/defaultdata.sql @@ -387,4 +387,9 @@ ANALYZE cc_pref; -- this validates the new partial index --end added in 2.5.14 -- For now, just needs to be truthy - to be updated later; we should find a better way to implement this... -INSERT INTO cc_pref("keystr", "valstr") VALUES('whats_new_dialog_viewed', 1); \ No newline at end of file +INSERT INTO cc_pref("keystr", "valstr") VALUES('whats_new_dialog_viewed', 1); + +--added for LibreTime to turn on podcast album override by default 3.0.0.alpha6 +INSERT INTO cc_pref("keystr", "valstr") VALUES('podcast_album_override', 1); +INSERT INTO cc_pref("keystr", "valstr") VALUES('podcast_auto_smartblock', 1); +-- end \ No newline at end of file