disable hiding the body to not hide the noscript element

This commit is contained in:
zadam
2020-05-11 22:44:10 +02:00
parent 940a70adc5
commit e541abbd60
4 changed files with 7 additions and 11 deletions

View File

@@ -170,7 +170,7 @@ function connectWebSocket() {
async function sendPing() {
if (Date.now() - lastPingTs > 30000) {
console.log(utils.now(), "Lost websocket connection to the backend");
console.log(utils.now(), "Lost websocket connection to the backend. If you keep having this issue repeatedly, you might want to check your reverse proxy (nginx, apache) configuration and allow/unblock WebSocket.");
}
if (ws.readyState === ws.OPEN) {
@@ -374,4 +374,4 @@ export default {
subscribeToMessages,
waitForSyncId,
waitForMaxKnownSyncId
};
};