diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-16 23:31:11 +0000 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-16 23:31:11 +0000 |
commit | 4a139d1cc861272b45812969878fa62f81ed9cfe (patch) | |
tree | a89997485f4a1341db79450568602c20bd4b1138 /plugins/OStatus/actions | |
parent | 014a32e6b873291bcd289a1ed25759a7a29221d7 (diff) |
OStatus: migrated notice parsing to use Activity helper classes; on the way to killing FeedMunger
Diffstat (limited to 'plugins/OStatus/actions')
-rw-r--r-- | plugins/OStatus/actions/pushcallback.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/OStatus/actions/pushcallback.php b/plugins/OStatus/actions/pushcallback.php index 2601a377a..388c8f9c3 100644 --- a/plugins/OStatus/actions/pushcallback.php +++ b/plugins/OStatus/actions/pushcallback.php @@ -59,6 +59,9 @@ class PushCallbackAction extends Action } $post = file_get_contents('php://input'); + + // @fixme Queue this to a background process; we should return + // as quickly as possible from a distribution POST. $profile->postUpdates($post, $hmac); } |