about summary refs log tree commit diff
path: root/app/services/unsubscribe_service.rb
diff options
context:
space:
mode:
authorabcang <abcang1015@gmail.com>2017-09-28 22:04:32 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-09-28 15:04:32 +0200
commit3d9b8847d21d886886baae483304288139669795 (patch)
tree28338bf793ebc525f1e44ace50a7f46424aaf123 /app/services/unsubscribe_service.rb
parentb9f59ebcc68e9da0a7158741a1a2ef3564e1321e (diff)
Flush body when POST requests (#5128)
Diffstat (limited to 'app/services/unsubscribe_service.rb')
-rw-r--r--app/services/unsubscribe_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/unsubscribe_service.rb b/app/services/unsubscribe_service.rb
index b99046712..d84a5a530 100644
--- a/app/services/unsubscribe_service.rb
+++ b/app/services/unsubscribe_service.rb
@@ -7,7 +7,7 @@ class UnsubscribeService < BaseService
     @account = account
 
     begin
-      @response = build_request.perform
+      @response = build_request.perform.flush
 
       Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{@response.status}" unless @response.status.success?
     rescue HTTP::Error, OpenSSL::SSL::SSLError => e