add: custom like emoji per instance, fix like
This fixes the fact that likes on mastodon didn't get federated properly and let's instance admins choose a custom emoji
This commit is contained in:
parent
1f8c12b984
commit
5c38e6b824
13 changed files with 97 additions and 12 deletions
|
|
@ -110,6 +110,7 @@ const canRenote = computed(() => ['public', 'home'].includes(props.note.visibili
|
|||
|
||||
const props = withDefaults(defineProps<{
|
||||
note: Misskey.entities.Note;
|
||||
meta: Misskey.entities.LiteInstanceMetadata;
|
||||
detail?: boolean;
|
||||
expandAllCws?: boolean;
|
||||
|
||||
|
|
@ -218,7 +219,7 @@ function like(): void {
|
|||
showMovedDialog();
|
||||
os.api('notes/reactions/create', {
|
||||
noteId: props.note.id,
|
||||
reaction: '❤️',
|
||||
reaction: props.meta.defaultLike,
|
||||
});
|
||||
const el = reactButton.value as HTMLElement | null | undefined;
|
||||
if (el) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue