Skip to content

Commit

Permalink
parse piefed instances the same as lemmy instances (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
rimu authored Sep 14, 2024
1 parent 1e2ffd6 commit f7370da
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fediseer/fediverse.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ def get_unknown_admins(self):
def retrieve_admins(self):
software_map = {
"lemmy": self.get_lemmy_admins,
"piefed": self.get_lemmy_admins,
"mastodon": self.get_mastodon_admins,
"friendica": self.get_mastodon_admins,
"pleroma": self.get_pleroma_admins,
Expand Down Expand Up @@ -263,6 +264,7 @@ def parse_instance_info(self):
self.version = self.node_info["software"].get("version","unknown")
software_map = {
"lemmy": self.get_lemmy_info,
"piefed": self.get_lemmy_info,
"mastodon": self.get_mastodon_info,
"friendica": self.get_mastodon_info,
"pleroma": self.get_pleroma_info,
Expand Down

0 comments on commit f7370da

Please sign in to comment.