mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
parent
c48d2c1dde
commit
dc02a0fc56
2 changed files with 3 additions and 7 deletions
|
@ -175,7 +175,6 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let customSyncLogDataInterval = null;
|
|
||||||
let logFilterTimer = -1;
|
let logFilterTimer = -1;
|
||||||
let inputtedFilterText = "";
|
let inputtedFilterText = "";
|
||||||
let selectBox;
|
let selectBox;
|
||||||
|
@ -239,7 +238,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
const load = () => {
|
const load = () => {
|
||||||
customSyncLogDataInterval = null;
|
|
||||||
syncLogWithInterval(100);
|
syncLogWithInterval(100);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -267,7 +265,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
const getSyncLogDataInterval = () => {
|
const getSyncLogDataInterval = () => {
|
||||||
return customSyncLogDataInterval ? customSyncLogDataInterval : serverSyncMainDataInterval;
|
return serverSyncMainDataInterval;
|
||||||
};
|
};
|
||||||
|
|
||||||
const logLevelChanged = () => {
|
const logLevelChanged = () => {
|
||||||
|
|
|
@ -817,13 +817,11 @@
|
||||||
|
|
||||||
const markArticleAsRead = (path, id) => {
|
const markArticleAsRead = (path, id) => {
|
||||||
// find row
|
// find row
|
||||||
let rowId, name, uid, unread;
|
let uid;
|
||||||
for (const row of rssFeedTable.getRowValues()) {
|
for (const row of rssFeedTable.getRowValues()) {
|
||||||
if (row.full_data.dataPath === path) {
|
if (row.full_data.dataPath === path) {
|
||||||
rowId = row.full_data.rowId;
|
|
||||||
name = row.full_data.dataPath;
|
|
||||||
uid = row.full_data.dataUid;
|
uid = row.full_data.dataUid;
|
||||||
unread = row.full_data.unread;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue