summaryrefslogtreecommitdiff
path: root/plugins/RSSCloud/RSSCloudPlugin.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-12-08 06:26:11 +0000
committerZach Copley <zach@status.net>2010-01-05 23:19:13 -0800
commitd091d061151749feddd3751f953f9bec48e382f2 (patch)
tree797d6109ddd4b1cb3b6d700555a0dcbd8cf85f96 /plugins/RSSCloud/RSSCloudPlugin.php
parent61804bb7bbd0cea92ba2bbcce15e37a35195341a (diff)
Notifier works, and bad subscriptions are deleted properly now.
Diffstat (limited to 'plugins/RSSCloud/RSSCloudPlugin.php')
-rw-r--r--plugins/RSSCloud/RSSCloudPlugin.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/RSSCloud/RSSCloudPlugin.php b/plugins/RSSCloud/RSSCloudPlugin.php
index 402fbec2d..b9187d86c 100644
--- a/plugins/RSSCloud/RSSCloudPlugin.php
+++ b/plugins/RSSCloud/RSSCloudPlugin.php
@@ -159,11 +159,16 @@ class RSSCloudPlugin extends Plugin
{
if (($queue == 'rsscloud') && ($this->_isLocal($notice))) {
- // broadcast the notice here
common_debug('broadcasting rssCloud bound notice ' . $notice->id);
+ $profile = $notice->getProfile();
+
+ $notifier = new RSSCloudNotifier();
+ $notifier->notify($profile);
+
return false;
}
+
return true;
}