Skip to content

Commit

Permalink
fix: 修复“顶部”页面,预览可能不正确的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocrosoft committed Sep 21, 2024
1 parent 947e4aa commit 7091dbf
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions pixiv previewer.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Pixiv Previewer(Dev)
// @namespace https://github.com/Ocrosoft/PixivPreviewer
// @version 3.7.26
// @version 3.7.27
// @description Display preview images (support single image, multiple images, moving images); Download animation(.zip); Sorting the search page by favorite count(and display it). Updated for the latest search page.
// @description:zh-CN 显示预览图(支持单图,多图,动图);动图压缩包下载;搜索页按热门度(收藏数)排序并显示收藏数,适配11月更新。
// @description:ja プレビュー画像の表示(単一画像、複数画像、動画のサポート); アニメーションのダウンロード(.zip); お気に入りの数で検索ページをソートします(そして表示します)。 最新の検索ページ用に更新されました。
Expand Down Expand Up @@ -1942,17 +1942,10 @@ Pages[PageType.SearchTop] = {
return returnMap;
}

$.each(sections, (i, e) => {
if ($(e).find('aside').length > 0) {
premiumSectionIndex = i;
} else {
// 排除小说部分
if ($(e).find('ul:first').find('li:first').find('a:first').attr('href').indexOf('novel/show.php') != -1) {
return true;
}
resultSectionIndex = i;
}
});
if (sections.length > 1) {
premiumSectionIndex = 0;
resultSectionIndex = 1;
}

iLog.v('premium: ' + premiumSectionIndex);
iLog.v('result: ' + resultSectionIndex);
Expand Down

0 comments on commit 7091dbf

Please sign in to comment.