aboutsummaryrefslogtreecommitdiffstats
path: root/packages/meshbay-hub/src
diff options
context:
space:
mode:
authorChristophe Besson <cbesson@gmail.com>2026-09-24 02:09:03 +0200
committerChristophe Besson <cbesson@gmail.com>2026-09-24 16:45:37 +0200
commit1ba95852f4365d166411f8e6db175db84ec06ec1 (patch)
tree726fe2a1b1f98b71522ad4b45adf8cd1cc8a7476 /packages/meshbay-hub/src
parent57737c05fbf7c482ba436ca8001e7a4b3097b434 (diff)
downloadmeshbay-1ba95852f4365d166411f8e6db175db84ec06ec1.tar.gz
refactor(node): move the MusicBrainz switch to the Music mixin
An operator op that exists for one app lives with that app. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-hub/src')
-rw-r--r--packages/meshbay-hub/src/meshbay_hub/static/transport.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/transport.js b/packages/meshbay-hub/src/meshbay_hub/static/transport.js
index 79cd8e1..fb698e8 100644
--- a/packages/meshbay-hub/src/meshbay_hub/static/transport.js
+++ b/packages/meshbay-hub/src/meshbay_hub/static/transport.js
@@ -1763,7 +1763,7 @@ class MeshBayTransport {
if (msg.type === 'error') throw new Error(msg.detail);
if (msg.type === 'admin_challenge') {
// Python's f"{bool}" is "True"/"False", not JS's lowercase — must
- // match webrtc_server.py _do_musicbrainz_enabled byte-for-byte.
+ // match apps/music.py _do_musicbrainz_enabled byte-for-byte.
const subject = enabled ? 'True' : 'False';
return this._authorizeAdminOp(msg, 'musicbrainz_enabled', subject, signFn);
}