1
0
Daniel Supernault 3 жил өмнө
parent
commit
197499da8b

+ 6 - 1
app/Util/ActivityPub/Helpers.php

@@ -457,9 +457,14 @@ class Helpers {
 			$ts = self::pluckval($activity['published']);
 			$scope = self::getScope($activity);
 			$cw = self::getSensitive($activity);
+			$pid = is_object($profile) ? $profile->id : (is_array($profile) ? $profile['id'] : null);
+
+			if(!$pid) {
+				return;
+			}
 
 			$status = new Status;
-			$status->profile_id = $profile->id;
+			$status->profile_id = $pid;
 			$status->url = $url;
 			$status->uri = $url;
 			$status->object_url = $id;