Skip to content

Commit

Permalink
Tasker plugin null pointer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jamorham committed Nov 3, 2016
1 parent e0634a4 commit 3329f93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public static boolean hostSupportsOnFireVariableReplacement( Activity editActivi
boolean supportedFlag = hostSupportsOnFireVariableReplacement( editActivity.getIntent().getExtras() );

if ( ! supportedFlag ) {
String callerPackage = editActivity.getCallingActivity().getPackageName();
String callerPackage = (editActivity.getCallingActivity() != null) ? editActivity.getCallingActivity().getPackageName() : "null";

// Tasker only supporteed this from 1.0.10
supportedFlag =
Expand Down

0 comments on commit 3329f93

Please sign in to comment.