Skip to content

Commit

Permalink
Remove ability to get embed code for remote posts (mastodon#32578)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire authored Oct 18, 2024
1 parent 2391937 commit 1fc165d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/status_action_bar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ class StatusActionBar extends ImmutablePureComponent {
menu.push({ text: intl.formatMessage(messages.share), action: this.handleShareClick });
}

if (publicStatus && (signedIn || !isRemote)) {
if (publicStatus && !isRemote) {
menu.push({ text: intl.formatMessage(messages.embed), action: this.handleEmbed });
}

Expand Down

0 comments on commit 1fc165d

Please sign in to comment.