[ActivityPub][NOTICE] Fix variable being wrongly reused

This commit is contained in:
Diogo Cordeiro 2020-08-05 17:27:30 +01:00
parent efdc7d9ba0
commit 1428ac2cb0
1 changed files with 3 additions and 3 deletions

View File

@ -185,9 +185,9 @@ class Activitypub_notice
$discovery = new Activitypub_explorer;
foreach ($mentions as $mention) {
try {
$actor_profile = $discovery->lookup($mention);
if (!empty($actor_profile)) {
$mentions_profiles[] = $actor_profile[0];
$mentioned_profile = $discovery->lookup($mention);
if (!empty($mentioned_profile)) {
$mentions_profiles[] = $mentioned_profile[0];
}
} catch (Exception $e) {
// Invalid actor found, just let it go, it will eventually be handled by some other federation plugin like OStatus.