mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 04:54:25 +00:00
51ff679b9d
* Fix admin page crashing when trying to block an invalid domain name Fixes #13880 * Fix trailing and leading spaces not being properly stripped for domain blocks
16 lines
265 B
Ruby
16 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DomainNormalizable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
before_validation :normalize_domain
|
|
end
|
|
|
|
private
|
|
|
|
def normalize_domain
|
|
self.domain = TagManager.instance.normalize_domain(domain&.strip)
|
|
end
|
|
end
|