upd: apply changes

This commit is contained in:
Marie 2024-02-03 21:29:46 +01:00
parent e7b86090e1
commit 2a50e6e9e7
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
5 changed files with 59 additions and 66 deletions

View file

@ -332,7 +332,7 @@ function checkMute(noteToCheck: Misskey.entities.Note, mutedWords: Array<string
const keymap = {
'r': () => reply(true),
'e|a|plus': () => react(true),
'q': () => renote(true),
'q': () => renote(appearNote.value.visibility),
'up|k|shift+tab': focusBefore,
'down|j|tab': focusAfter,
'esc': blur,
@ -526,7 +526,7 @@ function quote() {
}).then(() => {
misskeyApi('notes/renotes', {
noteId: appearNote.value.id,
userId: $i.id,
userId: $i?.id,
limit: 1,
quote: true,
}).then((res) => {
@ -548,7 +548,7 @@ function quote() {
}).then(() => {
misskeyApi('notes/renotes', {
noteId: appearNote.value.id,
userId: $i.id,
userId: $i?.id,
limit: 1,
quote: true,
}).then((res) => {