diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2017-09-07 19:33:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-07 19:33:07 +0200 |
| commit | f4df27fa59c21f6c776081364afb2ab1a8b83b74 (patch) | |
| tree | be751691b517a3f43ced554515f9131becfdb187 /searx/utils.py | |
| parent | 688801076d173de67bf4543ca289a35f28b6c245 (diff) | |
| parent | 33fd938016def4496876d89d0ccaa53f47705005 (diff) | |
Merge pull request #1022 from misnyo/nyaa
nyaa.si fixed
Diffstat (limited to 'searx/utils.py')
| -rw-r--r-- | searx/utils.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/searx/utils.py b/searx/utils.py index 3df571160..35b20ad83 100644 --- a/searx/utils.py +++ b/searx/utils.py @@ -290,6 +290,15 @@ def convert_str_to_int(number_str): return 0 +# convert a variable to integer or return 0 if it's not a number +def int_or_zero(num): + if isinstance(num, list): + if len(num) < 1: + return 0 + num = num[0] + return convert_str_to_int(num) + + def is_valid_lang(lang): is_abbr = (len(lang) == 2) if is_abbr: |