Browse Source

fix for no author url

pull/96/head
Aaron Parecki 6 years ago
parent
commit
84f983b735
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      controllers/controllers.php

+ 1
- 1
controllers/controllers.php View File

@ -771,7 +771,7 @@ $app->get('/reply/preview', function() use($app) {
$mentions = [];
if($entry) {
if(array_key_exists('author', $entry)) {
if(array_key_exists('author', $entry) && isset($entry['author']['nickname'])) {
// Find all @-names in the post, as well as the author name
$mentions[] = strtolower($entry['author']['nickname']);
}

Loading…
Cancel
Save