[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.
This commit is contained in:
Aadniz 2025-10-28 06:21:40 +01:00 committed by GitHub
parent ea4a55fa57
commit 43065c5026
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,7 +30,7 @@ img_src_xpath = './div/img/@srcset'
title_xpath = './@aria-label' title_xpath = './@aria-label'
premium_xpath = '../div/div/div/text()' premium_xpath = '../div/div/div/text()'
premium_keytext = 'Watch the artist to view this deviation' 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): def request(query, params):