Skip to content

Commit 815a27c

Browse files
committed
fixes Reload all tabs #16
1 parent 8460ef6 commit 815a27c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reload.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
if (!isActive) return;
3030
const currentUrl = window.location.protocol + '//' + window.location.host + window.location.pathname;
3131
if (msg.data == 'reload' || msg.data == 'refreshcss') {
32-
if (data.proxySetup === false || (data.proxySetup === true && currentUrl.startsWith(data.actualUrl))) {
32+
if (data.proxySetup === true || (data.proxySetup === false && currentUrl.startsWith(data.actualUrl))) {
3333
window.location.reload();
3434
}
3535
}

0 commit comments

Comments
 (0)