Skip to content

Commit

Permalink
Fixed: Fix wrong error string returned for null plugin bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
agnostic-apollo committed Feb 20, 2022
1 parent a32f8d0 commit a0aaf8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class PluginBundleManager {
*/
@SuppressLint("DefaultLocale")
public static String parseBundle(@NonNull final Context context, final Bundle bundle) {
if (bundle == null) return context.getString(R.string.error_null_or_empty_executable);
if (bundle == null) return context.getString(R.string.error_null_bundle);

/*
* Make sure the correct number of extras exist.
Expand Down

0 comments on commit a0aaf8e

Please sign in to comment.