From 43065c5026e607d80ab7a76d746e7b85b42924cb Mon Sep 17 00:00:00 2001 From: Aadniz <8147434+Aadniz@users.noreply.github.com> Date: Tue, 28 Oct 2025 06:21:40 +0100 Subject: [PATCH] [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. --- searx/engines/deviantart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):