projects
/
pgeu-system.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b553a33
)
Fix missing return value in Bluesky token validation
author
Magnus Hagander
<
[email protected]
>
Sun, 1 Dec 2024 15:50:18 +0000
(16:50 +0100)
committer
Magnus Hagander
<
[email protected]
>
Sun, 1 Dec 2024 15:50:18 +0000
(16:50 +0100)
postgresqleu/util/messaging/bluesky.py
patch
|
blob
|
blame
|
history
diff --git
a/postgresqleu/util/messaging/bluesky.py
b/postgresqleu/util/messaging/bluesky.py
index a5803d04d5b301858721a4859e270c0a13db5140..93e5e439c59f84ba8b420d54690eec0036e3222b 100644
(file)
--- a/
postgresqleu/util/messaging/bluesky.py
+++ b/
postgresqleu/util/messaging/bluesky.py
@@
-206,6
+206,7
@@
class Bluesky(object):
_token = self.bsjwt
except Exception as e:
return False, 'Could not get bluesky access token: {}'.format(e)
+ return True, ''
def get_link(self, id):
if id.startswith('at://'):