$activity is not being initialized correctly, so just use $res directly for now
pull/1634/head
trwnh 6 years ago committed by GitHub
parent 9788c80ca9
commit 274a22c1c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -241,7 +241,7 @@ class Helpers {
$scope = 'private';
$cw = isset($activity['sensitive']) ? (bool) $activity['sensitive'] : false;
$cw = isset($res['sensitive']) ? (bool) $res['sensitive'] : false;
if(isset($res['to']) == true) {
if(is_array($res['to']) && in_array('https://www.w3.org/ns/activitystreams#Public', $res['to'])) {
@ -452,4 +452,4 @@ class Helpers {
$response = curl_exec($ch);
return;
}
}
}

Loading…
Cancel
Save