mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Fix performance regression in Account::Field#verifiable? (#8719)
* Fix performance regression in Account::Field#verifiable? Regression from #8703 * Fix code style issue
This commit is contained in:
parent
f4d549d300
commit
bac8227519
@ -323,7 +323,7 @@ class Account < ApplicationRecord
|
||||
end
|
||||
|
||||
def verifiable?
|
||||
value.present? && /\A#{FetchLinkCardService::URL_PATTERN}\z/ =~ value
|
||||
value.present? && value.start_with?('http://', 'https://')
|
||||
end
|
||||
|
||||
def mark_verified!
|
||||
|
Loading…
x
Reference in New Issue
Block a user