mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 09:11:31 -04:00
log when fetching index fails
This commit is contained in:
parent
231a7c2185
commit
90b3b2c479
1 changed files with 6 additions and 2 deletions
|
@ -338,8 +338,10 @@ void Index::Impl::downloadIndex(std::string commitHash) {
|
|||
auto unzip = file::Unzip::intoDir(targetFile, targetDir, true)
|
||||
.expect("Unable to unzip new index");
|
||||
if (!unzip) {
|
||||
Loader::get()->queueInMainThread([unzip] {
|
||||
IndexUpdateEvent(UpdateFailed(unzip.unwrapErr())).post();
|
||||
auto const err = unzip.unwrapErr();
|
||||
log::error("Failed to unzip latest index: {}", err);
|
||||
Loader::get()->queueInMainThread([err] {
|
||||
IndexUpdateEvent(UpdateFailed(err)).post();
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
@ -355,6 +357,7 @@ void Index::Impl::downloadIndex(std::string commitHash) {
|
|||
}).detach();
|
||||
})
|
||||
.expect([](std::string const& err) {
|
||||
log::error("Error downloading latest index: {}", err);
|
||||
IndexUpdateEvent(UpdateFailed(fmt::format("Error downloading: {}", err))).post();
|
||||
})
|
||||
.progress([](auto&, double now, double total) {
|
||||
|
@ -413,6 +416,7 @@ void Index::Impl::checkForUpdates() {
|
|||
}
|
||||
})
|
||||
.expect([](std::string const& err) {
|
||||
log::error("Failed to fetch index: {}", err);
|
||||
IndexUpdateEvent(
|
||||
UpdateFailed(fmt::format("Error checking for updates: {}", err))
|
||||
).post();
|
||||
|
|
Loading…
Add table
Reference in a new issue