From 41afeb7bfca88348a01efc340faa9ed537a6477c Mon Sep 17 00:00:00 2001 From: Interitio Date: Thu, 30 Jul 2026 10:18:43 +0300 Subject: [PATCH] tweak: Update ws URL and channel name --- BookBar.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BookBar.js b/BookBar.js index e5a646c..3ddf512 100644 --- a/BookBar.js +++ b/BookBar.js @@ -2,7 +2,7 @@ window.addEventListener("DOMContentLoaded", () => { //Create progress bar const book_bar = new ProgressBar(); //Pat Lilac - const websocket = new ReconnectingWebSocket("wss://lilac.thewisewolf.dev/campaigns/partnerplus2026/ws"); + const websocket = new ReconnectingWebSocket("wss://lilac.thewisewolf.dev/tracker/timer/ws"); communicate(websocket, book_bar); }); @@ -47,7 +47,7 @@ class ProgressBar { } } //TEST ANIMATION - + simProgress() { if (this.current_progress < this.max_progress) { this.setProgress(this.current_progress + 1); @@ -58,7 +58,7 @@ class ProgressBar { setTimeout(this.simProgress.bind(this), 5500); } } - + } class ReconnectingWebSocket { @@ -158,7 +158,7 @@ function communicate(websocket, book_bar) { JSON.stringify( { type: "init", - channel: "SubTimer", + channel: "CampaignRewards", community: params.get('community') } )