fix(backend): リノートの評価の順番を変更、isQuote・isQuotePackedの挙動を修正 (MisskeyIO#622)
This commit is contained in:
parent
ba037963e8
commit
dc9a839626
8 changed files with 15 additions and 11 deletions
|
@ -70,7 +70,7 @@ class LocalTimelineChannel extends Channel {
|
|||
}
|
||||
|
||||
// 純粋なリノート(引用リノートでないリノート)の場合
|
||||
if (isRenotePacked(note) && !isQuotePacked(note) && note.renote) {
|
||||
if (note.renote && isRenotePacked(note) && !isQuotePacked(note)) {
|
||||
if (!this.withRenotes) return;
|
||||
if (note.renote.reply) {
|
||||
const reply = note.renote.reply;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue