This commit is contained in:
Simon Vieille 2024-03-19 16:18:17 +01:00
parent 853b90a30f
commit 8422474bcd
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -159,9 +159,7 @@ func (f *FakeManager) IsValidFaker(name string) bool {
return true
}
if _, exists := f.Fakers[name]; exists {
return true
}
_, exists := f.Fakers[name]
return false
return exists
}