diff --git a/ui/component/publishForm/view.jsx b/ui/component/publishForm/view.jsx index 4bcb69393..27f7649d9 100644 --- a/ui/component/publishForm/view.jsx +++ b/ui/component/publishForm/view.jsx @@ -314,6 +314,11 @@ function PublishForm(props: Props) { runPublish = true; } + // (Try to) Prevent an anon livestream claim + if (mode === PUBLISH_MODES.LIVESTREAM) { + updatePublishForm({ channel: activeChannelName }); + } + if (runPublish) { if (enablePublishPreview) { setPreviewing(true); @@ -339,7 +344,10 @@ function PublishForm(props: Props) { // Editing claim uri return (
- + { if (res && res.items && res.items.length > 0) { - const claim = res.items[0]; + const claim = res.items[res.items.length - 1]; setLivestreamClaim(claim); } else { setIsFetching(false);