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

View file

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