forked from friendica/friendica-addons
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: friendica/friendica-addons#1501 Reviewed-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
commit
a4598a2427
|
@ -97,6 +97,10 @@ function bluesky_load_config(ConfigFileManager $loader)
|
||||||
|
|
||||||
function bluesky_check_item_notification(array &$notification_data)
|
function bluesky_check_item_notification(array &$notification_data)
|
||||||
{
|
{
|
||||||
|
if (empty($notification_data['uid'])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$did = bluesky_get_user_did($notification_data['uid']);
|
$did = bluesky_get_user_did($notification_data['uid']);
|
||||||
|
|
||||||
if (!empty($did)) {
|
if (!empty($did)) {
|
||||||
|
|
Loading…
Reference in a new issue