Merge pull request #1889 from annando/1509-diaspora-images

Bugfix: Picture import from Diaspora often failed
This commit is contained in:
Tobias Diekershoff 2015-09-15 06:21:19 +02:00
commit 7a432a6739
1 changed files with 8 additions and 3 deletions

View File

@ -28,9 +28,14 @@ function dsprphotoq_run($argv, $argc){
foreach($dphotos as $dphoto) {
$r = q("SELECT * FROM user WHERE uid = %d",
intval($dphoto['uid'])
);
$r = array();
if ($dphoto['uid'] == 0)
$r[0] = array("uid" => 0, "page-flags" => PAGE_FREELOVE);
else
$r = q("SELECT * FROM user WHERE uid = %d",
intval($dphoto['uid']));
if(!$r) {
logger("diaspora photo queue: user " . $dphoto['uid'] . " not found");
return;