From 2484e7473a71ccd230168aa5a2e694e5d5ce2448 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Wed, 18 Aug 2021 19:51:07 +0200 Subject: [PATCH] [fix] /config add missing GIT_BRANCH value Signed-off-by: Markus Heiser --- searx/webapp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/searx/webapp.py b/searx/webapp.py index ca62c389..eff6915d 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -1117,6 +1117,7 @@ def config(): 'brand': { 'CONTACT_URL': brand.CONTACT_URL, 'GIT_URL': brand.GIT_URL, + 'GIT_BRANCH': brand.GIT_BRANCH, 'DOCS_URL': brand.DOCS_URL }, 'doi_resolvers': [r for r in settings['doi_resolvers']],