about summary refs log tree commit diff
path: root/app/services/unfollow_service.rb
diff options
context:
space:
mode:
authoralpaca-tc <alpaca-tc@alpaca.tc>2017-04-16 21:55:43 +0900
committerEugen <eugen@zeonfederated.com>2017-04-16 14:55:43 +0200
commit8f8319852ca8ff3b1b8f163b184e58122ec5b3fb (patch)
treea68f31a2e37b82b2912eae2256e7b805ede3ee82 /app/services/unfollow_service.rb
parent75f416a4925c3cb60c5a4919cdafc45392b3be00 (diff)
Fixed NoMethodError in UnfollowService (#1918)
Diffstat (limited to 'app/services/unfollow_service.rb')
-rw-r--r--app/services/unfollow_service.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/services/unfollow_service.rb b/app/services/unfollow_service.rb
index 244c9b529..9b39f4945 100644
--- a/app/services/unfollow_service.rb
+++ b/app/services/unfollow_service.rb
@@ -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