From 494bc8b8f16c1036e1b7e22f7c7887f40efd9688 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 28 Dec 2024 20:40:53 +0000 Subject: [PATCH] DID has to be fetched all the time --- src/Protocol/ATProtocol.php | 4 ---- 1 file changed, 4 deletions(-) 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)) {