mirror of
https://github.com/nextcloud/server.git
synced 2026-04-26 08:38:11 -04:00
Fix "TypeError: e.t0.response is undefined" spam from user_status
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
98e2dce3a4
commit
e6b579351d
3 changed files with 5 additions and 5 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -163,7 +163,7 @@ export default {
|
|||
await this.$store.dispatch('reFetchStatusFromServer')
|
||||
}
|
||||
} catch (error) {
|
||||
console.debug('Failed sending heartbeat, got: ' + error.response.status)
|
||||
console.debug('Failed sending heartbeat, got: ' + error.response?.status)
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue