BACKENDS: CLOUD: Fix overridden methods

This commit is contained in:
Eugene Sandulenko 2021-11-17 00:50:16 +01:00
parent ea10ec1c71
commit 65020829fc
No known key found for this signature in database
GPG key ID: 014D387312D34F08
4 changed files with 4 additions and 4 deletions

View file

@ -123,7 +123,7 @@ void DownloadRequest::finishDownload(bool success) {
(*_boolCallback)(Storage::BoolResponse(this, success));
}
void DownloadRequest::finishError(Networking::ErrorResponse error) {
void DownloadRequest::finishError(Networking::ErrorResponse error, Networking::RequestState state) {
if (_localFile)
_localFile->close();
Request::finishError(error);