1
0
Fork 0
mirror of https://code.sup39.dev/repos/Wqawg synced 2024-12-29 00:44:52 +09:00

If an actor doesn't have SSH keys, don't list an "sshKey":[] property

This commit is contained in:
fr33domlover 2019-10-19 04:16:09 +00:00
parent 1c56f63e86
commit 0be7f05d31

View file

@ -380,7 +380,7 @@ instance ActivityPub Actor where
<> "outbox" .=? (ObjURI authority <$> outbox)
<> "followers" .=? (ObjURI authority <$> followers)
<> "publicKey" `pair` encodePublicKeySet authority pkeys
<> "sshKey" .= map (ObjURI authority) skeys
<> "sshKey" .=% map (ObjURI authority) skeys
data Repo u = Repo
{ repoActor :: Actor u