diff --git a/src/store/plugins/ui/appsMetadata.js b/src/store/plugins/ui/appsMetadata.js index 8bf60503e..de353172e 100644 --- a/src/store/plugins/ui/appsMetadata.js +++ b/src/store/plugins/ui/appsMetadata.js @@ -49,7 +49,7 @@ export default (store) => store.registerModule('appsMetadata', { actions: { async fetchManifest(_, host) { const fetchText = async (url) => (await fetch(url)).text(); - let appUrl = new URL(`http://${host}`); + let appUrl = new URL(`https://${host}`); if (appUrl.hostname === 'localhost') return {}; const parser = new DOMParser();