From: Michael Date: Sat, 28 Dec 2024 20:40:53 +0000 (+0000) Subject: DID has to be fetched all the time X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=494bc8b8f16c1036e1b7e22f7c7887f40efd9688;p=friendica.git DID has to be fetched all the time --- diff --git a/src/Protocol/ATProtocol.php b/src/Protocol/ATProtocol.php index 3ab613e4f8..d6bb8eb6fc 100644 --- a/src/Protocol/ATProtocol.php +++ b/src/Protocol/ATProtocol.php @@ -286,10 +286,6 @@ final class ATProtocol */ public function getUserDid(int $uid, bool $refresh = false): ?string { - if (!$this->pConfig->get($uid, 'bluesky', 'post')) { - return null; - } - if (!$refresh) { $did = $this->pConfig->get($uid, 'bluesky', 'did'); if (!empty($did)) {