Implement showing quotes

This commit is contained in:
tusooa 2023-07-12 20:45:44 -04:00
commit 1c20487494
No known key found for this signature in database
GPG key ID: 42AEC43D48433C51
5 changed files with 26 additions and 0 deletions

View file

@ -229,6 +229,10 @@ const addNewStatuses = (state, { statuses, showImmediately = false, timeline, us
timelineObject.newStatusCount += 1
}
if (status.quote) {
addStatus(status.quote, /* showImmediately = */ false, /* addToTimeline = */ false)
}
return status
}