diff --git a/src/webui/www/private/views/log.html b/src/webui/www/private/views/log.html index ebee5fd17..02fef3ada 100644 --- a/src/webui/www/private/views/log.html +++ b/src/webui/www/private/views/log.html @@ -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 = () => { diff --git a/src/webui/www/private/views/rss.html b/src/webui/www/private/views/rss.html index 4d2cee9c0..6d39eb16e 100644 --- a/src/webui/www/private/views/rss.html +++ b/src/webui/www/private/views/rss.html @@ -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; } }