diff options
author | Wojtek Kosior <koszko@koszko.org> | 2021-08-27 10:01:32 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2021-08-27 10:01:32 +0200 |
commit | 538376341e9a50ebd350897fe26f43c433f0ee06 (patch) | |
tree | fecea23bd499131f822d25e66b8b36819e6bb365 /html | |
parent | 3303d7d70d4b9749c39ca87085d17495beab6030 (diff) | |
download | browser-extension-538376341e9a50ebd350897fe26f43c433f0ee06.tar.gz browser-extension-538376341e9a50ebd350897fe26f43c433f0ee06.zip |
enable whitelisting of `file://' protocol\n\nThis commit additionally also changes the semantics of triple asterisk wildcard in URL path.
Diffstat (limited to 'html')
-rw-r--r-- | html/display-panel.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/html/display-panel.js b/html/display-panel.js index 2539ded..bc190ac 100644 --- a/html/display-panel.js +++ b/html/display-panel.js @@ -20,7 +20,7 @@ * IMPORT TYPE_PREFIX * IMPORT nice_name * IMPORT open_in_settings - * IMPORT for_each_possible_pattern + * IMPORT each_url_pattern * IMPORT by_id * IMPORT clone_template * IMPORTS_END @@ -127,7 +127,8 @@ function handle_page_change(change) function populate_possible_patterns_list(url) { - for_each_possible_pattern(url, add_pattern_to_list); + for (const pattern of each_url_pattern(url)) + add_pattern_to_list(pattern); for (const [pattern, settings] of query_all(storage, url)) { set_pattern_li_button_text(ensure_pattern_exists(pattern), |