summaryrefslogtreecommitdiff
path: root/lib/distribqueuehandler.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-02-25 11:26:33 -0800
committerBrion Vibber <brion@pobox.com>2010-02-25 11:26:33 -0800
commit79c0d52daa92b60e8eed80fa9459367c26f97122 (patch)
tree6bb2e206ef30cab5ce0cfbcf46b413f0633d57ee /lib/distribqueuehandler.php
parent39a8e9d8e679cfd02e47fa93aa26373101515cf9 (diff)
OStatus: save categories from the Atom entry as hashtags.
Diffstat (limited to 'lib/distribqueuehandler.php')
-rw-r--r--lib/distribqueuehandler.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/distribqueuehandler.php b/lib/distribqueuehandler.php
index dc183fb36..d2be7a92c 100644
--- a/lib/distribqueuehandler.php
+++ b/lib/distribqueuehandler.php
@@ -63,24 +63,12 @@ class DistribQueueHandler
// XXX: do we need to change this for remote users?
try {
- $notice->saveTags();
- } catch (Exception $e) {
- $this->logit($notice, $e);
- }
-
- try {
$notice->addToInboxes();
} catch (Exception $e) {
$this->logit($notice, $e);
}
try {
- $notice->saveUrls();
- } catch (Exception $e) {
- $this->logit($notice, $e);
- }
-
- try {
Event::handle('EndNoticeSave', array($notice));
// Enqueue for other handlers
} catch (Exception $e) {