]> cat aescling's git repositories - mastodon.git/commitdiff
Fixed NoMethodError in UnfollowService (#1918)
authoralpaca-tc <alpaca-tc@alpaca.tc>
Sun, 16 Apr 2017 12:55:43 +0000 (21:55 +0900)
committerEugen <eugen@zeonfederated.com>
Sun, 16 Apr 2017 12:55:43 +0000 (14:55 +0200)
app/services/unfollow_service.rb

index 244c9b52904f24dcda8a967ec534f45af750c898..9b39f4945a1d27adacbe9614093aeb9fa0a37f48 100644 (file)
@@ -6,6 +6,7 @@ class UnfollowService < BaseService
   # @param [Account] target_account Which to unfollow
   def call(source_account, target_account)
     follow = source_account.unfollow!(target_account)
+    return unless follow
     NotificationWorker.perform_async(build_xml(follow), source_account.id, target_account.id) unless target_account.local?
     UnmergeWorker.perform_async(target_account.id, source_account.id)
   end