Fix missing , (#18660)

lolsob-rspec
Takeshi Umeda 2022-06-24 06:10:03 +09:00 committed by GitHub
parent 5c38a4492b
commit 27f235265d
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class ActivityPub::Parser::MediaAttachmentParser
components = begin
blurhash = @json['blurhash']
if blurhash.present? && /^[\w#$%*+-.:;=?@\[\]^{|}~]+$/.match?(blurhash)
if blurhash.present? && /^[\w#$%*+,-.:;=?@\[\]^{|}~]+$/.match?(blurhash)
Blurhash.components(blurhash)
end
end