Ignore (expected) error for HEAD request for AZ file

buefy-0.9^2
Manuel Kasper 2024-05-29 20:45:49 +02:00
rodzic 3a61bce076
commit c49b8ca82c
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -128,7 +128,7 @@ export default {
if (!this.reference) { if (!this.reference) {
return return
} }
axios.head(this.makeAzUrlForType('gpx')) axios.head(this.makeAzUrlForType('gpx'), { ignoreError: true })
.then(response => { .then(response => {
if (response.status === 200) { if (response.status === 200) {
this.haveAz = true this.haveAz = true

Wyświetl plik

@ -86,7 +86,7 @@ let lastError = null
axios.interceptors.response.use(response => { axios.interceptors.response.use(response => {
return response return response
}, error => { }, error => {
if ((!lastError || new Date().getTime() - lastError > 9000) && (!error.response || error.response.status !== 404) && myVue) { if (!error.config.ignoreError && (!lastError || new Date().getTime() - lastError > 9000) && (!error.response || error.response.status !== 404) && myVue) {
// SnackbarProgrammatic.open doesn't work with Webpack 5 // SnackbarProgrammatic.open doesn't work with Webpack 5
// See https://github.com/buefy/buefy/issues/2299 // See https://github.com/buefy/buefy/issues/2299
myVue.$buefy.snackbar.open({ myVue.$buefy.snackbar.open({