Fixed: inverted boolean in check for enabled anon user
This commit is contained in:
parent
611ef12ca6
commit
b751e0ba92
@ -94,7 +94,7 @@ int main(int argc, char **argv)
|
|||||||
{
|
{
|
||||||
throw std::runtime_error("No such anon user in database");
|
throw std::runtime_error("No such anon user in database");
|
||||||
}
|
}
|
||||||
if(!anon->enabled)
|
if(anon->enabled)
|
||||||
{
|
{
|
||||||
throw std::runtime_error("Anon user cannot be enabled");
|
throw std::runtime_error("Anon user cannot be enabled");
|
||||||
}
|
}
|
||||||
|
Caricamento…
Fai riferimento in un nuovo problema
Block a user