From 5073d87a6d31e1be428a1606beba96e756278fb7 Mon Sep 17 00:00:00 2001 From: vincent Date: Sun, 13 Sep 2020 10:20:35 +0200 Subject: [PATCH] correct dbtype in tt-rss --- templates/config.php.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/config.php.j2 b/templates/config.php.j2 index 808a99d..3014349 100644 --- a/templates/config.php.j2 +++ b/templates/config.php.j2 @@ -2,7 +2,7 @@ // ******************************************* // *** Database configuration (important!) *** // ******************************************* - define('DB_TYPE', '{{ ttrss_db_type}}'); + define('DB_TYPE', '"{{ 'pgsql' if nextcloud_DB_type == 'postgres' else nextcloud_DB_type }}"'); define('DB_HOST', 'localhost'); define('DB_USER', '{{ ttrss_db_user}}'); define('DB_NAME', '{{ttrss_db_name}}');