Propagation: Make 423 Locked a soft error #3387

This commit is contained in:
Christian Kamm 2015-09-30 14:00:53 +02:00
parent a08a90a718
commit 20ea9015ca

View file

@ -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;
}