diff options
Diffstat (limited to 'packages/meshbay-hub/src')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/static/transport.js | 2 |
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); } |