Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Celeste.Mod.mm/Mod/UI/AutoModUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ private void autoUpdate(SortedDictionary<ModUpdateInfo, EverestModuleMetadata> u
ModUpdaterHelper.VerifyChecksum(update, zipPath);

break; // out of the loop
} catch (Exception e) when (e is WebException or TimeoutException or IOException) {
} catch (Exception e) {
downloadException = e;
Logger.Warn("AutoModUpdater", $"Download from {url} failed, trying another mirror");
Logger.LogDetailed(e);
Expand Down
2 changes: 1 addition & 1 deletion Celeste.Mod.mm/Mod/UI/OuiDependencyDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ private void downloadDependency(ModUpdateInfo mod, EverestModuleMetadata install
LogLine(Dialog.Clean("DEPENDENCYDOWNLOADER_VERIFYING_CHECKSUM"));
ModUpdaterHelper.VerifyChecksum(mod, downloadDestination);
break; // out of the loop
} catch (Exception e) when (e is WebException or TimeoutException or IOException) {
} catch (Exception e) {
downloadException = e;
Logger.Warn("OuiDependencyDownloader", $"Download failed, trying another mirror");
Logger.LogDetailed(e);
Expand Down
2 changes: 1 addition & 1 deletion Celeste.Mod.mm/Mod/UI/OuiModUpdateList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ private void downloadMod(ModUpdateInfo update, TextMenu.Button button, string zi

ModUpdaterHelper.VerifyChecksum(update, zipPath);
break; // out of the loop
} catch (Exception e) when (e is WebException or TimeoutException) {
} catch (Exception e) {
downloadException = e;
Logger.Warn("OuiModUpdateList", $"Download from {url} failed, trying another mirror.");
Logger.LogDetailed(e);
Expand Down
Loading