diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-01 18:46:34 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-01 18:46:34 -0800 |
commit | 680ace19665f064404ddb4723d9b41ab69c6e1bd (patch) | |
tree | 8c59db5ae424404f8b22152eecaaf9e3fa006350 /plugins/OStatus/actions | |
parent | 3c0729786de07b25cba4c62d71079d6b96f71994 (diff) |
High-priority OStatus fixes:
* PuSHing out to multiple client services could fail; only first callback got reached
* Correction for re-sub request to a known sub
Diffstat (limited to 'plugins/OStatus/actions')
-rw-r--r-- | plugins/OStatus/actions/pushhub.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/OStatus/actions/pushhub.php b/plugins/OStatus/actions/pushhub.php index f33690bc4..842d65e7d 100644 --- a/plugins/OStatus/actions/pushhub.php +++ b/plugins/OStatus/actions/pushhub.php @@ -104,7 +104,7 @@ class PushHubAction extends Action throw new ClientException("Invalid hub.secret $secret; must be under 200 bytes."); } - $sub = HubSub::staticGet($sub->topic, $sub->callback); + $sub = HubSub::staticGet($topic, $callback); if (!$sub) { // Creating a new one! $sub = new HubSub(); |