chore: replace hardcoded WebSocket URL with wss://metriki.molodetz.nl/event endpoint in Metriki class constructor

This commit is contained in:
retoor 2025-01-02 19:20:57 +00:00
parent a85719a8aa
commit d5359176f6

View File

@ -80,6 +80,7 @@ class Metriki {
}else{
this.url += "/event"
}
this.url = "wss://metriki.molodetz.nl/event"
const me = this
this.ws = new WebSocket(this.url)
this.ws.onopen = () => {