Browse Source

Merge pull request #263 from return42/fix-config

[fix] /config add missing GIT_BRANCH value
Alexandre Flament 3 years ago
parent
commit
6844e3a617
1 changed files with 2 additions and 1 deletions
  1. 2 1
      searx/webapp.py

+ 2 - 1
searx/webapp.py

@@ -82,7 +82,7 @@ from searx.utils import (
     dict_subset,
     match_language,
 )
-from searx.version import VERSION_STRING, GIT_URL
+from searx.version import VERSION_STRING, GIT_URL, GIT_BRANCH
 from searx.query import RawTextQuery
 from searx.plugins import plugins
 from searx.plugins.oa_doi_rewrite import get_doi_resolver
@@ -1319,6 +1319,7 @@ def config():
         'brand': {
             'CONTACT_URL': get_setting('general.contact_url'),
             'GIT_URL': GIT_URL,
+            'GIT_BRANCH': GIT_BRANCH,
             'DOCS_URL': get_setting('brand.docs_url'),
         },
         'doi_resolvers': list(settings['doi_resolvers'].keys()),