Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0ba74cd8 authored by Alexandre Flament's avatar Alexandre Flament
Browse files

[mod] results: don't crash when an engine don't have a category

According to
https://github.com/searx/searx/blob/820b468bfe96f693d60ce06f1e78af51f00deefc/searx/engines/__init__.py#L87-L88

an engine can have no category at all.

Without this commit, searx raise an exception in searx/results.py

Note: in this case, the engine is not shown in the preferences.
parent d41cafd5
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -309,10 +309,11 @@ class ResultContainer:

        for res in results:
            # FIXME : handle more than one category per engine
            res['category'] = engines[res['engine']].categories[0]
            engine = engines[res['engine']]
            res['category'] = engine.categories[0] if len(engine.categories) > 0 else ''

            # FIXME : handle more than one category per engine
            category = engines[res['engine']].categories[0]\
            category = res['category']\
                + ':' + res.get('template', '')\
                + ':' + ('img_src' if 'img_src' in res or 'thumbnail' in res else '')