We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 699604e commit ece6107Copy full SHA for ece6107
resource/sites/jpopsuki.eu/getSearchResult.js
@@ -141,6 +141,13 @@ if (!"".getQueryString) {
141
case row.is(".torrent_redline"):
142
albumRow = row;
143
albumTitle = title;
144
+ // 当在 Profile 里关闭 torrent grouping 时,补全单元格以让索引位置生效
145
+ if (cells.eq(0).text().trim() !== "") {
146
+ let tmpRow = row.clone().get(0);
147
+ tmpRow.insertCell(0);
148
+ cells = $(tmpRow).find(">td");
149
+ fieldIndex.category = 0;
150
+ }
151
break;
152
153
default:
0 commit comments