mirror of https://github.com/tootsuite/mastodon
Fix performance regression in Account::Field#verifiable? (#8719)
* Fix performance regression in Account::Field#verifiable? Regression from #8703 * Fix code style issuepull/8721/head
parent
f4d549d300
commit
bac8227519
|
@ -323,7 +323,7 @@ class Account < ApplicationRecord
|
||||||
end
|
end
|
||||||
|
|
||||||
def verifiable?
|
def verifiable?
|
||||||
value.present? && /\A#{FetchLinkCardService::URL_PATTERN}\z/ =~ value
|
value.present? && value.start_with?('http://', 'https://')
|
||||||
end
|
end
|
||||||
|
|
||||||
def mark_verified!
|
def mark_verified!
|
||||||
|
|
Loading…
Reference in New Issue