Handle the case when a contact is unknown.

This commit is contained in:
Michael 2017-02-16 20:03:44 +00:00
parent ce953e5882
commit 531074a72f
1 changed files with 4 additions and 0 deletions

View File

@ -730,6 +730,10 @@ function posts_from_contact_url(App $a, $contact_url) {
$sql = "`item`.`uid` = %d";
}
if (!dbm::is_result($r)) {
return '';
}
$author_id = intval($r[0]["author-id"]);
if (get_config('system', 'old_pager')) {