chore: update repository URL in configuration files to new endpoint

This commit is contained in:
retoor 2025-01-02 19:30:00 +00:00
parent 58452da1d7
commit 6300b42d1a

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()
}