This commit is contained in:
Mikael Nordfeldth 2015-12-30 18:03:45 +01:00
parent b0bf620c61
commit bceece3bb9
1 changed files with 3 additions and 1 deletions

View File

@ -566,8 +566,10 @@ class TwitterImport
$reply->modified = $notice->created;
common_log(LOG_INFO, __METHOD__ . ": saving reply: notice {$notice->id} to profile {$user->id}");
$id = $reply->insert();
} catch (NoSuchUserException $e) {
common_log(LOG_WARNING, 'No local user found for Foreign_link with id: '.$mention->id);
} catch (NoResultException $e) {
common_log(LOG_WARNING, 'No local user found for Foreign_link with local User id: '.$flink->user_id);
common_log(LOG_WARNING, 'No foreign link or profile found for Foreign_link with id: '.$mention->id);
}
}
}