Skip to content
Snippets Groups Projects
Unverified Commit 9c571a95 authored by Takeshi Umeda's avatar Takeshi Umeda Committed by GitHub
Browse files

Fix missing , (#18660)

parent 6c2d3038
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment