Updated url.

This commit is contained in:
retoor 2025-01-02 20:30:00 +01:00
parent 52b567cc5e
commit 56a8098234

View File

@ -26,9 +26,20 @@ class Metriki {
}
}
emit(data){
this.ws.send(JSON.stringify(data))
const me = this
try{
this.ws.send(JSON.stringify(data))
}catch(e){
this.isConnected = false
setTimeout(() => {
me.emitVisit()
},500)
}
}
emitVisit(){
if(!(this.isRendered && this.isConnected)) {
return;
}
this.emit({"href":window.location.href,"html":document.documentElement.outerHTML,"title":document.title,"domain":window.location.host})
this.addEventListeners()
}