Fix a couple 'continue's from old looping code in Twitter importer (-> return null)

This commit is contained in:
Brion Vibber 2010-10-29 13:06:32 -07:00
parent 178f3600ed
commit 15b108620e
1 changed files with 2 additions and 2 deletions

View File

@ -57,13 +57,13 @@ class TwitterImport
if (preg_match("/$source/", mb_strtolower($status->source))) {
common_debug($this->name() . ' - Skipping import of status ' .
$status->id . ' with source ' . $source);
continue;
return null;
}
// Don't save it if the user is protected
// FIXME: save it but treat it as private
if ($status->user->protected) {
continue;
return null;
}
$notice = $this->saveStatus($status);