Merge pull request '[bluesky] Fix double dollar sign in bluesky_fetch_notifications' (#1415) from MrPetovan/friendica-addons:bug/warnings into develop

Reviewed-on: https://git.friendi.ca/friendica/friendica-addons/pulls/1415
pull/1416/head
heluecht 2023-08-28 06:51:12 +02:00
commit 187ba8383d
1 changed files with 7 additions and 7 deletions

View File

@ -917,7 +917,7 @@ function bluesky_fetch_notifications(int $uid)
$data = Item::insert($item);
Logger::debug('Got like', ['uid' => $uid, 'result' => $data, 'uri' => $uri]);
} else {
Logger::info('Thread parent not found', ['uid' => $uid, 'parent' => $$item['thr-parent'], 'uri' => $uri]);
Logger::info('Thread parent not found', ['uid' => $uid, 'parent' => $item['thr-parent'], 'uri' => $uri]);
}
break;