Fix originalMessage when it is reblogged in Toot

This commit is contained in:
AkiraFukushima 2022-05-28 21:15:46 +09:00
parent f4793a5ee6
commit a285f7009e
No known key found for this signature in database
GPG Key ID: B6E51BAC4DE1A957
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ export default defineComponent({
const bookmarkSupported = computed(() => store.state.TimelineSpace.SideMenu.enabledTimelines.bookmark)
const shortcutEnabled = computed(() => focused.value && !overlaid.value)
const originalMessage = computed(() => {
if (message.value.reblog && message.value.quote) {
if (message.value.reblog && !message.value.quote) {
return message.value.reblog
} else {
return message.value