mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
Propagation: Make 423 Locked a soft error #3387
This commit is contained in:
parent
a08a90a718
commit
20ea9015ca
1 changed files with 6 additions and 0 deletions
|
@ -69,6 +69,12 @@ inline SyncFileItem::Status classifyError(QNetworkReply::NetworkError nerror, in
|
|||
return SyncFileItem::SoftError;
|
||||
}
|
||||
|
||||
if (httpCode == 423) {
|
||||
// "Locked"
|
||||
// Should be temporary.
|
||||
return SyncFileItem::SoftError;
|
||||
}
|
||||
|
||||
return SyncFileItem::NormalError;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue