Also try URI for remote note links
This commit is contained in:
parent
9e90323ba5
commit
6dbabccabe
|
@ -126,11 +126,11 @@ export function getCopyNoteLinkMenu(note: Misskey.entities.Note, text: string):
|
|||
}
|
||||
|
||||
export function getCopyNoteLinkRemoteMenu(note: misskey.entities.Note, text: string): MenuItem {
|
||||
return note.url ? {
|
||||
return (note.url || note.uri) ? {
|
||||
icon: 'ti ti-link',
|
||||
text,
|
||||
action: (): void => {
|
||||
copyToClipboard(note.url);
|
||||
copyToClipboard(note.url || note.uri);
|
||||
os.success();
|
||||
},
|
||||
} : undefined;
|
||||
|
|
Loading…
Reference in New Issue