Ver código fonte

[fix] searching for "!google_images text" doesn't work (bang with underscore)

Alexandre Flament 8 anos atrás
pai
commit
448903cd4a
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      searx/query.py

+ 1
- 1
searx/query.py Ver arquivo

95
 
95
 
96
             # this force a engine or category
96
             # this force a engine or category
97
             if query_part[0] == '!' or query_part[0] == '?':
97
             if query_part[0] == '!' or query_part[0] == '?':
98
-                prefix = query_part[1:].replace('-', ' ')
98
+                prefix = query_part[1:].replace('-', ' ').replace('_', ' ')
99
 
99
 
100
                 # check if prefix is equal with engine shortcut
100
                 # check if prefix is equal with engine shortcut
101
                 if prefix in engine_shortcuts:
101
                 if prefix in engine_shortcuts: