fix: rm about:blank url check for action

This commit is contained in:
RohitR311
2024-12-07 21:53:55 +05:30
parent db37c72ce5
commit a8e8c1de82

View File

@@ -222,7 +222,7 @@ export default class Interpreter extends EventEmitter {
let url: any = page.url();
if (action && action.where.url !== url && action.where.url !== "about:blank") {
if (action && action.where.url !== url) {
url = action.where.url;
}