mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
Ignore errors when setting local storage for duplicate tab protection
This commit is contained in:
parent
a82d6bd6b5
commit
e1dc33511b
@ -315,11 +315,11 @@ Scroll down when autoscroll is being activated.
|
||||
|
||||
Enable duplicate tab detection.
|
||||
|
||||
window.localStorage.setItem 'be.bastelstu.chat.session', chatSession
|
||||
$(window).on 'storage', (event) ->
|
||||
if event.originalEvent.key is 'be.bastelstu.chat.session'
|
||||
if parseInt(event.originalEvent.newValue) isnt chatSession
|
||||
showError WCF.Language.get 'chat.error.duplicateTab'
|
||||
try
|
||||
window.localStorage.setItem 'be.bastelstu.chat.session', chatSession
|
||||
$(window).on 'storage', (event) ->
|
||||
if event.originalEvent.key is 'be.bastelstu.chat.session'
|
||||
showError WCF.Language.get 'chat.error.duplicateTab' if parseInt(event.originalEvent.newValue) isnt chatSession
|
||||
|
||||
Ask for permissions to use Desktop notifications when notifications are activated.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user