]> git.mxchange.org Git - friendica.git/blobdiff - include/queue.php
missing salmon key? report it.
[friendica.git] / include / queue.php
index da5028aee5e59697ce4c43092257e3ed2c81d44e..fe96a75ce51604c43ecd42d32d8cb0683012bb20 100644 (file)
@@ -83,7 +83,8 @@ function queue_run($argv, $argc){
                                continue;
                }
 
-               $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
+               $u = q("SELECT `user`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey` 
+                       FROM `user` WHERE `uid` = %d LIMIT 1",
                        intval($c[0]['uid'])
                );
                if(! count($u)) {
@@ -124,7 +125,7 @@ function queue_run($argv, $argc){
                        case NETWORK_DIASPORA:
                                if($contact['notify']) {
                                        logger('queue: diaspora_delivery: item ' . $q_item['id'] . ' for ' . $contact['name']);
-                                       $deliver_status = diaspora_transmit($owner,$contact['notify'],$data);
+                                       $deliver_status = diaspora_transmit($owner,$contact,$data);
 
                                        if($deliver_status == (-1))
                                                update_queue_time($q_item['id']);