diff options
| author | Aadniz <8147434+Aadniz@users.noreply.github.com> | 2025-10-27 08:02:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-27 08:02:01 +0100 |
| commit | d514dea5cc3ff12e35d9f7ee5adac2b47f5818c6 (patch) | |
| tree | 80fe946eb757836da626ea5c50ef010d381c19f6 /searx/engines/deviantart.py | |
| parent | 22e1d3001794ecf89f3e3eee9844af8f48aeffc8 (diff) | |
[fix] deviantart engine: does not return any results (#5383)
Diffstat (limited to 'searx/engines/deviantart.py')
| -rw-r--r-- | searx/engines/deviantart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/deviantart.py b/searx/engines/deviantart.py index cf7692890..d3ceab215 100644 --- a/searx/engines/deviantart.py +++ b/searx/engines/deviantart.py @@ -23,7 +23,7 @@ paging = True # search-url base_url = 'https://www.deviantart.com' -results_xpath = '//div[@class="_2pZkk"]/div/div/a' +results_xpath = '//div[@class="V_S0t_"]/div/div/a' url_xpath = './@href' thumbnail_src_xpath = './div/img/@src' img_src_xpath = './div/img/@srcset' |