Skip to content

Commit 6a8055c

Browse files
committed
more lenient
1 parent 0ac9228 commit 6a8055c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

v3/js/opt-frontend.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ var try_hook = function(hook_name, args) {
9090

9191

9292
function requestSync() {
93-
if (TogetherJS.running && !isExecutingCode) {
93+
if (TogetherJS.running) {
9494
TogetherJS.send({type: "requestSync"});
9595
}
9696
}
@@ -170,7 +170,7 @@ function initTogetherJS() {
170170
return;
171171
}
172172

173-
if (TogetherJS.running && !isExecutingCode) {
173+
if (TogetherJS.running) {
174174
TogetherJS.send({type: "myAppState", myAppState: getAppState()});
175175
}
176176
});

0 commit comments

Comments
 (0)