From 667129e471e69c0615e72256dd47e7632c6a310b Mon Sep 17 00:00:00 2001 From: roytam1 Date: Mon, 7 Oct 2024 07:35:30 +0800 Subject: [PATCH] [Basilisk] tabbrowser: corrected nsIWebNavigation usage --- application/basilisk/base/content/tabbrowser.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/basilisk/base/content/tabbrowser.xml b/application/basilisk/base/content/tabbrowser.xml index e7ec7f1ec0..2162cd1860 100644 --- a/application/basilisk/base/content/tabbrowser.xml +++ b/application/basilisk/base/content/tabbrowser.xml @@ -2649,7 +2649,7 @@ // Using the "STOP_ALL" flag should halt all animations, fetches, network // activity, etc. to come to a clean state for removal and unlinking (if enabled). var browser = this.getBrowserForTab(aTab); - browser.webNavigation.stop(nsIWebNavigation.STOP_ALL); + browser.webNavigation.stop(Ci.nsIWebNavigation.STOP_ALL); this._tabFilters.delete(aTab); this._tabListeners.delete(aTab);