Skip to content

Commit

Permalink
[hapjs-platform#629]沙箱fix:notifyPageNotFound方法ClassCastException
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-chai authored and jianghai33 committed Dec 12, 2023
1 parent 3ae3a2e commit cb4e830
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ public void postPageNotFound(int appId, String pageUri, int pageId) {
protected void notifyPageNotFound(Object msgObj) {
Object[] args = (Object[]) msgObj;
int appId = (int) args[0];
String pageUri = (String) args[0];
String pageUri = (String) args[1];
mEngine.notifyPageNotFound(appId, pageUri);
}

Expand Down

0 comments on commit cb4e830

Please sign in to comment.