From 6409b1e6fe4b5c508efaaabd264186d4df7553a6 Mon Sep 17 00:00:00 2001 From: vincent Date: Sun, 13 Sep 2020 18:53:56 +0200 Subject: [PATCH] correct 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 3014349..92ee9d0 100644 --- a/templates/config.php.j2 +++ b/templates/config.php.j2 @@ -2,7 +2,7 @@ // ******************************************* // *** Database configuration (important!) *** // ******************************************* - define('DB_TYPE', '"{{ 'pgsql' if nextcloud_DB_type == 'postgres' else nextcloud_DB_type }}"'); + define('DB_TYPE', '"{{ 'pgsql' if ttrss_DB_type == 'postgres' else ttrss_DB_type }}"'); define('DB_HOST', 'localhost'); define('DB_USER', '{{ ttrss_db_user}}'); define('DB_NAME', '{{ttrss_db_name}}');