Merge pull request #5384 from annando/item-uri

Fix for missing username in uri for comments to public posts
This commit is contained in:
Tobias Diekershoff 2018-07-16 06:45:41 +02:00 committed by GitHub
commit 92104d7b85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ function item_post(App $a) {
$notify_type = ($parent ? 'comment-new' : 'wall-new');
$uri = ($message_id ? $message_id : Item::newURI($profile_uid, $guid));
$uri = ($message_id ? $message_id : Item::newURI($api_source ? $profile_uid : $uid, $guid));
// Fallback so that we alway have a parent uri
if (!$thr_parent_uri || !$parent) {