forked from lix-project/lix
Fix "Promise already satisfied" error
This commit is contained in:
parent
4de0639105
commit
794e4ab475
|
@ -86,7 +86,9 @@ protected:
|
||||||
std::rethrow_exception(exc);
|
std::rethrow_exception(exc);
|
||||||
} catch (DownloadError & e) {
|
} catch (DownloadError & e) {
|
||||||
if (e.error == Downloader::NotFound || e.error == Downloader::Forbidden)
|
if (e.error == Downloader::NotFound || e.error == Downloader::Forbidden)
|
||||||
success(0);
|
return success(0);
|
||||||
|
failure(exc);
|
||||||
|
} catch (...) {
|
||||||
failure(exc);
|
failure(exc);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue