This commit is contained in:
creeper123123321 2021-03-06 22:16:08 -03:00
parent c93a3aacbb
commit 69cab63ce6

View File

@ -291,7 +291,7 @@ function confirmJoin(hash) {
socket.send(JSON.stringify({action: "session_hash_response", session_hash: hash}));
}
function authNotification(msg, yes, no) {
if (!pageBlur || (false && Notification.permission != "granted")) {
if (!pageBlur || Notification.permission != "granted") {
if (confirm(msg)) yes(); else no();
return;
}