tangled
alpha
login
or
join now
zenfyr.dev
/
xpost
2
fork
atom
social media crossposting tool. 3rd time's the charm
mastodon
misskey
crossposting
bluesky
2
fork
atom
overview
issues
1
pulls
pipelines
fix: add spoiler check to misskey
zenfyr.dev
6 months ago
6a0aa384
3d6800d6
verified
This commit was signed with the committer's
known signature
.
zenfyr.dev
SSH Key Fingerprint:
SHA256:TtcIcnTnoAB5mqHofsaOxIgiMzfVBxej1AXT7DQdrTE=
+1
-1
1 changed file
expand all
collapse all
unified
split
misskey
common.py
+1
-1
misskey/common.py
reviewed
···
48
48
return []
49
49
50
50
def is_sensitive(self) -> bool:
51
51
-
return self.sensitive or (self.spoiler is not None)
51
51
+
return self.sensitive or (self.spoiler is not None and self.spoiler != "")
52
52
53
53
def get_post_url(self) -> str | None:
54
54
return self.url