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

Unverified Commit 46040129 authored by Adam Tauber's avatar Adam Tauber Committed by GitHub
Browse files

Merge pull request #2036 from 999eagle/patch-yacy

Fix YaCy text results returned as images
parents fe72c7a6 71db7b12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ def response(resp):

    for result in search_results[0].get('items', []):
        # parse image results
        if result.get('image'):
        if result.get('image') and result.get('width') and result.get('height'):

            result_url = ''
            if 'url' in result: