Skip to content

Commit a0aaf8e

Browse files
Fixed: Fix wrong error string returned for null plugin bundle
1 parent a32f8d0 commit a0aaf8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/termux/tasker/PluginBundleManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public class PluginBundleManager {
7474
*/
7575
@SuppressLint("DefaultLocale")
7676
public static String parseBundle(@NonNull final Context context, final Bundle bundle) {
77-
if (bundle == null) return context.getString(R.string.error_null_or_empty_executable);
77+
if (bundle == null) return context.getString(R.string.error_null_bundle);
7878

7979
/*
8080
* Make sure the correct number of extras exist.

0 commit comments

Comments
 (0)