aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/ui.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/scripts/ui.js')
-rw-r--r--app/scripts/ui.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/scripts/ui.js b/app/scripts/ui.js
index a1f904f61..a99da37a0 100644
--- a/app/scripts/ui.js
+++ b/app/scripts/ui.js
@@ -92,9 +92,9 @@ async function queryCurrentActiveTab (windowType) {
extension.tabs.query({active: true, currentWindow: true}, (tabs) => {
const [activeTab] = tabs
const {title, url} = activeTab
- const origin = url ? urlUtil.parse(url).hostname : null
+ const { hostname: origin, protocol } = url ? urlUtil.parse(url) : {}
resolve({
- title, origin, url,
+ title, origin, protocol, url,
})
})
})