autofix URL on import

This commit is contained in:
les 2021-06-07 00:00:15 +02:00
parent 91f482df9e
commit 00e8e0bd37
No known key found for this signature in database
GPG key ID: 352918250B012177

View file

@ -79,6 +79,9 @@ export default {
this.error = true this.error = true
return return
} }
if (!this.URL.match(/^https?:\/\//)) {
this.URL = `https://${this.URL}`
}
this.error = false this.error = false
this.errorMessage = '' this.errorMessage = ''
this.loading = true this.loading = true
@ -86,7 +89,6 @@ export default {
try { try {
const ret = await this.$axios.$get('/event/import', { params: { URL: this.URL } }) const ret = await this.$axios.$get('/event/import', { params: { URL: this.URL } })
this.events = ret this.events = ret
// check if contain an h-event // check if contain an h-event
this.$emit('imported', ret[0]) this.$emit('imported', ret[0])
} catch (e) { } catch (e) {