We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a9099e commit 647c9f6Copy full SHA for 647c9f6
AndroidSDK/src/com/leanplum/internal/VarCache.java
@@ -520,7 +520,7 @@ public static void applyVariableDiffs(
520
String name = entry.getKey();
521
Map<String, Object> messageConfig = CollectionUtil.uncheckedCast(VarCache.messages.get
522
(name));
523
- if (messageConfig.get("action") != null) {
+ if (messageConfig != null && messageConfig.get("action") != null) {
524
Map<String, Object> actionArgs =
525
CollectionUtil.uncheckedCast(messageConfig.get(Constants.Keys.VARS));
526
new ActionContext(
0 commit comments