]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/handlequeued.php
Default to not include delete verbs in notice streams
[quix0rs-gnu-social.git] / scripts / handlequeued.php
index 9031437aac9439a1139ff3deaa30857c468ff5ae..eb7d8297136cdb3dd461752d0ca8bc65439120c1 100755 (executable)
@@ -44,13 +44,13 @@ if (!$handler) {
     exit(1);
 }
 
-$notice = Notice::staticGet('id', $noticeId);
+$notice = Notice::getKV('id', $noticeId);
 if (empty($notice)) {
     print "Invalid notice id $noticeId\n";
     exit(1);
 }
 
-if (!$handler->handle_notice($notice)) {
+if (!$handler->handle($notice)) {
     print "Failed to handle notice id $noticeId on queue '$queue'.\n";
     exit(1);
 }