Just two to-dos added
This commit is contained in:
parent
81b609562e
commit
f1fe38d5c7
|
@ -307,6 +307,7 @@ function notifier_run(&$argv, &$argc){
|
||||||
$push_notify = true;
|
$push_notify = true;
|
||||||
|
|
||||||
// Send a salmon notification to every person we mentioned in the post
|
// 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']);
|
$arr = explode(',',$target_item['tag']);
|
||||||
foreach($arr as $x) {
|
foreach($arr as $x) {
|
||||||
logger('Checking tag '.$x, LOGGER_DEBUG);
|
logger('Checking tag '.$x, LOGGER_DEBUG);
|
||||||
|
|
|
@ -152,6 +152,9 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio
|
||||||
if ($first_id == "") {
|
if ($first_id == "") {
|
||||||
$first_id = $single_conv->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",
|
$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),
|
intval($message["uid"]), dbesc($first_id),
|
||||||
dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
|
dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
|
||||||
|
|
Loading…
Reference in a new issue