Fix attachment rendering of edited posts in OpenGraph (#22270)

Fixes #22241
This commit is contained in:
Claire 2022-12-15 17:41:20 +01:00 committed by GitHub
parent 8a56587d62
commit fb1d9789db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ module StatusesHelper
def media_summary(status)
attachments = { image: 0, video: 0, audio: 0 }
status.media_attachments.each do |media|
status.ordered_media_attachments.each do |media|
if media.video?
attachments[:video] += 1
elsif media.audio?