diff --git a/android/app/src/main/kotlin/app/revanced/manager/flutter/MainActivity.kt b/android/app/src/main/kotlin/app/revanced/manager/flutter/MainActivity.kt index 7ff82900..9654a781 100644 --- a/android/app/src/main/kotlin/app/revanced/manager/flutter/MainActivity.kt +++ b/android/app/src/main/kotlin/app/revanced/manager/flutter/MainActivity.kt @@ -271,8 +271,8 @@ class MainActivity : FlutterActivity() { "update", mapOf( "progress" to -100.0, - "header" to "Aborting...", - "log" to "An error occurred! Aborting\nError:\n$stack" + "header" to "Aborted...", + "log" to "An error occurred! Aborted\nError:\n$stack" ) ) } diff --git a/lib/ui/views/installer/installer_viewmodel.dart b/lib/ui/views/installer/installer_viewmodel.dart index c1523dab..63631df0 100644 --- a/lib/ui/views/installer/installer_viewmodel.dart +++ b/lib/ui/views/installer/installer_viewmodel.dart @@ -135,15 +135,15 @@ class InstallerViewModel extends BaseViewModel { } on Exception catch (e) { update( -100.0, - 'Aborting...', - 'An error occurred! Aborting\nError:\n$e', + 'Aborted...', + 'An error occurred! Aborted\nError:\n$e', ); if (kDebugMode) { print(e); } } } else { - update(-100.0, 'Aborting...', 'No app or patches selected! Aborting'); + update(-100.0, 'Aborted...', 'No app or patches selected! Aborted'); } if (FlutterBackground.isBackgroundExecutionEnabled) { try {