From 50f7e17e57aede350ce653bce202c11f98b8e353 Mon Sep 17 00:00:00 2001 From: Sherry Ma Date: Sat, 7 Mar 2020 23:08:03 -0500 Subject: [PATCH] fixed calling wrong method name --- src/js/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/popup.js b/src/js/popup.js index 9c7e3b0..df3f36b 100644 --- a/src/js/popup.js +++ b/src/js/popup.js @@ -1089,7 +1089,7 @@ Logic.registerPanel(P_CONTAINER_EDIT, { const userContextId = formValues.get("container-id"); const currentTab = await Logic.currentTab(); const tabId = currentTab.id; - const fullURL = this.checkurl(url); + const fullURL = this.checkUrl(url); Logic.setOrRemoveAssignment(tabId, fullURL, userContextId, false); },