]> git.mxchange.org Git - friendica.git/commitdiff
Just two to-dos added
authorMichael Vogel <icarus@dabo.de>
Wed, 10 Jun 2015 06:36:51 +0000 (08:36 +0200)
committerMichael Vogel <icarus@dabo.de>
Wed, 10 Jun 2015 06:36:51 +0000 (08:36 +0200)
include/notifier.php
include/ostatus_conversation.php

index 18d0aead8efadd1b99040745620e080d12e2484f..a0fd713c2053709d645f8315e5af17fddf1e3cf1 100644 (file)
@@ -307,6 +307,7 @@ function notifier_run(&$argv, &$argc){
                                $push_notify = true;
 
                                // Send a salmon notification to every person we mentioned in the post
+                               // To-Do: Send a Salmon to every Friendica user in that thread
                                $arr = explode(',',$target_item['tag']);
                                foreach($arr as $x) {
                                        logger('Checking tag '.$x, LOGGER_DEBUG);
index f897a058a3eb930d620bc671c7a2be57ed569209..cbf0163b7cf5cbcd56f7dc4a6300139c6f0a8f18 100644 (file)
@@ -152,6 +152,9 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio
                if ($first_id == "") {
                        $first_id = $single_conv->id;
 
+                       // To-Do:
+                       // Only fetch a new parent if the new one doesn't have parents
+                       // It can happen that OStatus servers have incomplete threads.
                        $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
                                intval($message["uid"]), dbesc($first_id),
                                dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));