Skip to content

Commit d59b726

Browse files
committed
Reduce Frida polling frequency
This seems to cause problems in some environments, and is way heavier than it needs to be given the list doesn't change very often.
1 parent 2507e10 commit d59b726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/intercept/config/frida-config.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ class FridaConfig extends React.Component<{
253253
}));
254254

255255
this.updateTargets();
256-
const updateInterval = setInterval(this.updateTargets, 2000);
256+
const updateInterval = setInterval(this.updateTargets, 4000);
257257
disposeOnUnmount(this, () => clearInterval(updateInterval));
258258
}
259259

0 commit comments

Comments
 (0)