mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-21 16:55:46 +03: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 inputtedFilterText = "";
|
||||
let selectBox;
|
||||
|
@ -239,7 +238,6 @@
|
|||
};
|
||||
|
||||
const load = () => {
|
||||
customSyncLogDataInterval = null;
|
||||
syncLogWithInterval(100);
|
||||
};
|
||||
|
||||
|
@ -267,7 +265,7 @@
|
|||
};
|
||||
|
||||
const getSyncLogDataInterval = () => {
|
||||
return customSyncLogDataInterval ? customSyncLogDataInterval : serverSyncMainDataInterval;
|
||||
return serverSyncMainDataInterval;
|
||||
};
|
||||
|
||||
const logLevelChanged = () => {
|
||||
|
|
|
@ -817,13 +817,11 @@
|
|||
|
||||
const markArticleAsRead = (path, id) => {
|
||||
// find row
|
||||
let rowId, name, uid, unread;
|
||||
let uid;
|
||||
for (const row of rssFeedTable.getRowValues()) {
|
||||
if (row.full_data.dataPath === path) {
|
||||
rowId = row.full_data.rowId;
|
||||
name = row.full_data.dataPath;
|
||||
uid = row.full_data.dataUid;
|
||||
unread = row.full_data.unread;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue