Replace deprecated document.domain by location.hostname

This commit is contained in:
Georg Krause 2022-05-05 20:40:03 +02:00
parent d0d429beb4
commit 0ea396e80c
No known key found for this signature in database
GPG Key ID: 2970D504B2183D22
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ export default {
return parser.hostname return parser.hostname
}, },
appDomain: (state) => { appDomain: (state) => {
return document.domain return location.hostname
} }
}, },
actions: { actions: {