From 3ff845dbdf396baf9899517078c937a64c28130d Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Mon, 25 Dec 2023 19:25:53 +0200 Subject: [PATCH] notification panel abort last fetch on remove --- client/src/views/notification/panel.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/src/views/notification/panel.js b/client/src/views/notification/panel.js index 32539082a4..cea9555015 100644 --- a/client/src/views/notification/panel.js +++ b/client/src/views/notification/panel.js @@ -66,6 +66,10 @@ class NotificationPanelView extends View { this.overflowWasHidden = false; } + + if (this.collection) { + this.collection.abortLastFetch(); + } }); }