diff options
| author | Aadniz <8147434+Aadniz@users.noreply.github.com> | 2025-10-28 06:21:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-28 06:21:40 +0100 |
| commit | 43065c5026e607d80ab7a76d746e7b85b42924cb (patch) | |
| tree | 7722bd8bf7359b49c7ed581d84c42b4209978c4b | |
| parent | ea4a55fa57a4682f48265d50a9d816801ead0b88 (diff) | |
[fix] deviantart engine: pagination match change (#5384)
Pagination currently does not work for deviantart, resulting in the same page
being shown when going to the next page in SearXNG.
| -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 d3ceab215..8cbfb7ad9 100644 --- a/searx/engines/deviantart.py +++ b/searx/engines/deviantart.py @@ -30,7 +30,7 @@ img_src_xpath = './div/img/@srcset' title_xpath = './@aria-label' premium_xpath = '../div/div/div/text()' premium_keytext = 'Watch the artist to view this deviation' -cursor_xpath = '(//a[@class="_1OGeq"]/@href)[last()]' +cursor_xpath = '(//a[@class="vQ2brP"]/@href)[last()]' def request(query, params): |