Skip to content

Commit

Permalink
Running into an issue with using "app" method frida/frida-gum#426
Browse files Browse the repository at this point in the history
Would ensure running it on main thread.
  • Loading branch information
In3tinct committed Jan 4, 2024
1 parent d22910f commit bcf229f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion script/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ rpc.exports = {
delegate.application_openURL_options_(app, ur, opts);
break;
case "app":
ObjC.schedule(ObjC.mainQueue, () => {
app.openURL_(ur);
});
break;
case "scene_activity":
activity.setWebPageURL_(ur);
Expand All @@ -102,4 +104,4 @@ rpc.exports = {
return "method not implemented";
}
}
};
};

0 comments on commit bcf229f

Please sign in to comment.