mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-26 15:02:52 -05:00
Accept 204 response status as valid
This commit is contained in:
@@ -223,7 +223,7 @@ const actions = {
|
||||
}
|
||||
})
|
||||
|
||||
if (response.status === 201) {
|
||||
if (response.status === 201 || response.status === 204) {
|
||||
commit('DELETE_ACCOUNT', account.id)
|
||||
} else {
|
||||
failedAccounts.push({ account: account.diisplayName, statusText: response.statusText })
|
||||
|
||||
Reference in New Issue
Block a user