diff --git a/app/src/main/java/com/aurora/store/view/ui/sheets/DownloadMenuSheet.kt b/app/src/main/java/com/aurora/store/view/ui/sheets/DownloadMenuSheet.kt index bf38d44a1..9cb5f9f58 100644 --- a/app/src/main/java/com/aurora/store/view/ui/sheets/DownloadMenuSheet.kt +++ b/app/src/main/java/com/aurora/store/view/ui/sheets/DownloadMenuSheet.kt @@ -122,6 +122,9 @@ class DownloadMenuSheet : BaseBottomSheet() { ) } catch (exception: Exception) { Log.e(TAG, "Failed to install ${args.download.packageName}", exception) + if (exception is NullPointerException) { + requireContext().toast(R.string.installer_status_failure_invalid) + } } } }