Browse Source

strip leading & trailing spaces from remote follow acct (#997) (#2321)

closed-social-glitch-2
codl 7 years ago
committed by Eugen
parent
commit
8565ba68f7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/models/remote_follow.rb

+ 1
- 1
app/models/remote_follow.rb View File

@ -8,6 +8,6 @@ class RemoteFollow
validates :acct, presence: true
def initialize(attrs = {})
@acct = attrs[:acct]
@acct = attrs[:acct].strip unless attrs[:acct].nil?
end
end

Loading…
Cancel
Save