]> git.mxchange.org Git - friendica.git/commitdiff
DID has to be fetched all the time
authorMichael <heluecht@pirati.ca>
Sat, 28 Dec 2024 20:40:53 +0000 (20:40 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 28 Dec 2024 20:40:53 +0000 (20:40 +0000)
src/Protocol/ATProtocol.php

index 3ab613e4f850849d23a7e5f9c302ff98bacc6663..d6bb8eb6fce29952f5e0ce92f6f921b4e729d976 100644 (file)
@@ -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)) {