Skip to content

Commit

Permalink
Rename humanize.star and qrcode.star to resolve "circular dependency …
Browse files Browse the repository at this point in the history
…detected: humanize.star -> humanize.star"
  • Loading branch information
IngmarStein committed Mar 8, 2025
1 parent d31d6be commit 2280d77
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/features/watcher/watcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default class Watcher {

connect() {
const proto = document.location.protocol === "https:" ? "wss:" : "ws:";
this.conn = new WebSocket(proto + '//' + document.location.host + document.location.pathname + 'api/v1/ws');
this.conn = new WebSocket(proto + '//' + document.location.host + document.location.pathname + '/api/v1/ws');
this.conn.open = this.open.bind(this);
this.conn.onmessage = this.process.bind(this);
this.conn.onclose = this.close.bind(this);
Expand Down

0 comments on commit 2280d77

Please sign in to comment.