Merge pull request #5218 from MrPetovan/bug/fix-feed-reshare
Fix feed blank reshare body
This commit is contained in:
commit
a1e06c9782
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ function share_init(App $a) {
|
|||
'guid', 'created', 'plink', 'title'];
|
||||
$item = Item::selectFirst(local_user(), $fields, ['id' => $post_id]);
|
||||
|
||||
if (!DBM::is_result($item) || $item['private']) {
|
||||
if (!DBM::is_result($item) || $item['private'] == 1) {
|
||||
killme();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue