forked from coracle/zooid
Fix reversed error condition
This commit is contained in:
+1
-1
@@ -131,7 +131,7 @@ func MakeInstance(filename string) (*Instance, error) {
|
|||||||
|
|
||||||
for _, role := range config.Roles {
|
for _, role := range config.Roles {
|
||||||
for _, hex := range role.Pubkeys {
|
for _, hex := range role.Pubkeys {
|
||||||
if pubkey, err := nostr.PubKeyFromHex(hex); err != nil {
|
if pubkey, err := nostr.PubKeyFromHex(hex); err == nil {
|
||||||
instance.Management.AllowPubkey(pubkey)
|
instance.Management.AllowPubkey(pubkey)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user