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) {
return
}
axios.head(this.makeAzUrlForType('gpx'))
axios.head(this.makeAzUrlForType('gpx'), { ignoreError: true })
.then(response => {
if (response.status === 200) {
this.haveAz = true

Wyświetl plik

@ -86,7 +86,7 @@ let lastError = null
axios.interceptors.response.use(response => {
return response
}, 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
// See https://github.com/buefy/buefy/issues/2299
myVue.$buefy.snackbar.open({