diff --git a/CHANGELOG.md b/CHANGELOG.md index c8cca4ddcf..0527c3d55c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ ## Fixes - Fixed auto backup, auto extension update, and app update checker stop working if it crash/failed +- Fixed crashes when trying to reload extension repo due to connection issue ## Translation - Update Japanese translation (akir45) diff --git a/app/src/main/java/yokai/domain/extension/repo/interactor/UpdateExtensionRepo.kt b/app/src/main/java/yokai/domain/extension/repo/interactor/UpdateExtensionRepo.kt index e4b9bcf0d3..776a04c2fd 100644 --- a/app/src/main/java/yokai/domain/extension/repo/interactor/UpdateExtensionRepo.kt +++ b/app/src/main/java/yokai/domain/extension/repo/interactor/UpdateExtensionRepo.kt @@ -28,6 +28,7 @@ class UpdateExtensionRepo( } catch (e: Exception) { when (e) { is FetchExtensionRepoException -> { + // TODO: A way to show user that a repo failed to update Logger.e(e) { "Failed to fetch repo details" } return }