diff --git a/ui/page/livestream/view.jsx b/ui/page/livestream/view.jsx index a956cb740..192d291b0 100644 --- a/ui/page/livestream/view.jsx +++ b/ui/page/livestream/view.jsx @@ -50,7 +50,7 @@ export default function CreatorDashboardPage(props: Props) { function createStreamKey() { if (!activeChannelClaim || !sigData.signature || !sigData.signing_ts) return null; - return `${activeChannelClaim.claim_id}?sig=${sigData.signature}&ts=${sigData.signing_ts}`; + return `${activeChannelClaim.claim_id}?d=${toHex(activeChannelClaim.name)}&s=${sigData.signature}&t=${sigData.signing_ts}`; } /******/ @@ -143,8 +143,10 @@ export default function CreatorDashboardPage(props: Props) { {/* Stream Claim(s) */} { livestreamClaim ? (
-

Your LiveStream Claims

- +

Your LiveStream Claims

+
) : (
@@ -153,9 +155,57 @@ export default function CreatorDashboardPage(props: Props) {
)} - {activeChannelClaim && -
Public Key: {activeChannelClaim.value.public_key}
- } + {/* Debug Stuff */} + { streamKey && ( +
+

Debug Info

+ + {/* Channel ID */} + + + {/* Signature */} + + + {/* Signature TS */} + + + {/* Hex Data */} + + + {/* Channel Public Key */} + +
+ )} )}