From 58ba6f41f3f486495f36a5b1d0365ad12b0d00f6 Mon Sep 17 00:00:00 2001 From: skomerko <168652295+skomerko@users.noreply.github.com> Date: Sat, 10 Aug 2024 06:49:00 +0200 Subject: [PATCH] WebUI: Clear trackerList on full update Like other similar data structures, trackerList also need to be cleared in the event of a full sync update. PR #21148. --- src/webui/www/private/scripts/client.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/webui/www/private/scripts/client.js b/src/webui/www/private/scripts/client.js index fdd1fa7ea..d9fdc771e 100644 --- a/src/webui/www/private/scripts/client.js +++ b/src/webui/www/private/scripts/client.js @@ -670,6 +670,7 @@ window.addEvent('load', function() { torrentsTable.clear(); category_list = {}; tagList = {}; + trackerList.clear(); } if (response['rid']) { syncMainDataLastResponseId = response['rid'];