mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 07:42:55 +00:00
Merge pull request 'Bluesky: Fixes "bluesky_get_did(): Argument #1 ($handle) must be of type string, null given"' (#1501) from heluecht/friendica-addons:bluesky-error into develop
Reviewed-on: https://git.friendi.ca/friendica/friendica-addons/pulls/1501 Reviewed-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
commit
a4598a2427
1 changed files with 4 additions and 0 deletions
|
@ -97,6 +97,10 @@ function bluesky_load_config(ConfigFileManager $loader)
|
|||
|
||||
function bluesky_check_item_notification(array &$notification_data)
|
||||
{
|
||||
if (empty($notification_data['uid'])) {
|
||||
return;
|
||||
}
|
||||
|
||||
$did = bluesky_get_user_did($notification_data['uid']);
|
||||
|
||||
if (!empty($did)) {
|
||||
|
|
Loading…
Reference in a new issue