Skip to content

Commit

Permalink
added npe check for activityflags
Browse files Browse the repository at this point in the history
  • Loading branch information
anatolysatanovskiy-mobius committed Sep 20, 2017
1 parent a236742 commit dc72ff1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -163,7 +163,7 @@ public int getActivityFlags() {
.getObject(NODE_MAP_KEY_ACTIVITY_FLAGS);
}
}
return flags;
return flags != null ? flags : ActivityFlags.NO_FLAGS;
}

/**
Expand Down

0 comments on commit dc72ff1

Please sign in to comment.