]> cat aescling's git repositories - mastodon.git/commitdiff
Clean up check that account needs a webfinger update (#1932)
authorMatt Jankowski <mjankowski@thoughtbot.com>
Sun, 16 Apr 2017 14:38:29 +0000 (10:38 -0400)
committerEugen <eugen@zeonfederated.com>
Sun, 16 Apr 2017 14:38:29 +0000 (16:38 +0200)
app/services/follow_remote_account_service.rb

index dce712b403ce5637630a89d51111f194c9ce819a..14bc064d5df02a43a7ca3ad9f4d07486aafe4106 100644 (file)
@@ -16,7 +16,7 @@ class FollowRemoteAccountService < BaseService
     return Account.find_local(username) if TagManager.instance.local_domain?(domain)
 
     account = Account.find_remote(username, domain)
-    return account unless account&.last_webfingered_at.nil? || 1.day.from_now(account.last_webfingered_at) < Time.now.utc
+    return account unless account_needs_webfinger_update?(account)
 
     Rails.logger.debug "Looking up webfinger for #{uri}"
 
@@ -62,6 +62,10 @@ class FollowRemoteAccountService < BaseService
 
   private
 
+  def account_needs_webfinger_update?(account)
+    account&.last_webfingered_at.nil? || account.last_webfingered_at <= 1.day.ago
+  end
+
   def get_feed(url)
     response = http_client.get(Addressable::URI.parse(url))
     [response.to_s, Nokogiri::XML(response)]