fix: quotes showing in replies on a note

This commit is contained in:
Mar0xy 2023-12-03 20:43:25 +01:00
parent e5667913f7
commit 10b27ad972
No known key found for this signature in database
GPG Key ID: 56569BBE47D2C828
2 changed files with 2 additions and 0 deletions

View File

@ -353,6 +353,7 @@ if (props.detail) {
os.api('notes/children', { os.api('notes/children', {
noteId: props.note.id, noteId: props.note.id,
limit: 5, limit: 5,
showQuotes: false,
}).then(res => { }).then(res => {
replies = res; replies = res;
}); });

View File

@ -362,6 +362,7 @@ if (props.detail) {
os.api('notes/children', { os.api('notes/children', {
noteId: props.note.id, noteId: props.note.id,
limit: 5, limit: 5,
showQuotes: false,
}).then(res => { }).then(res => {
replies = res; replies = res;
}); });