Commit 43df447c authored by justin's avatar justin

加非空判断

parent 3f6a3da9
...@@ -133,7 +133,7 @@ public class FlutterViewContainerManager implements IContainerManager { ...@@ -133,7 +133,7 @@ public class FlutterViewContainerManager implements IContainerManager {
urlParams.put(IContainerRecord.UNIQ_KEY,uniqueId); urlParams.put(IContainerRecord.UNIQ_KEY,uniqueId);
IContainerRecord currentTopRecord = getCurrentTopRecord(); IContainerRecord currentTopRecord = getCurrentTopRecord();
if(onResult != null) { if(onResult != null&&currentTopRecord!=null) {
mOnResults.put(currentTopRecord.uniqueId(),onResult); mOnResults.put(currentTopRecord.uniqueId(),onResult);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment