about summary refs log tree commit diff
path: root/app/workers
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-28 19:24:49 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-28 19:24:49 +0100
commit3ba6531611458dfe6c6538c27eec394e92d0fd75 (patch)
tree5ed151231ae2873ad0d890a1e56831d47abfb5d1 /app/workers
parent50638174c89a1a953359781e7c0749aed0ef7b2d (diff)
Fix setting of confirmed=true on successful confirmation
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/pubsubhubbub/confirmation_worker.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/workers/pubsubhubbub/confirmation_worker.rb b/app/workers/pubsubhubbub/confirmation_worker.rb
index 24e1185d4..b852970a9 100644
--- a/app/workers/pubsubhubbub/confirmation_worker.rb
+++ b/app/workers/pubsubhubbub/confirmation_worker.rb
@@ -10,6 +10,7 @@ class Pubsubhubbub::ConfirmationWorker
 
     subscription.secret        = secret
     subscription.lease_seconds = lease_seconds
+    subscription.confirmed     = true
 
     response = HTTP.headers(user_agent: 'Mastodon/PubSubHubbub')
                    .timeout(:per_operation, write: 20, connect: 20, read: 50)