From a8cffbb2059635023be554447af74409c61ca6a8 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 d92880bdb..c7361dec2 100644 --- a/src/webui/www/private/scripts/client.js +++ b/src/webui/www/private/scripts/client.js @@ -739,6 +739,7 @@ window.addEventListener("DOMContentLoaded", () => { torrentsTable.clear(); category_list.clear(); tagList.clear(); + trackerList.clear(); } if (response["rid"]) syncMainDataLastResponseId = response["rid"];