fix: fixed command result showing when not supposed to

This commit is contained in:
moonleay 2025-02-09 21:30:36 +01:00
parent dfc274942b
commit 6d4ae55f2f
Signed by: moonleay
GPG key ID: 82667543CCD715FB
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ using err::Error;
namespace commands
{
ActiveCommand::ActiveCommand() : SubCommand("active", 100, true)
ActiveCommand::ActiveCommand() : SubCommand("active", 100, false)
{
}

View file

@ -11,7 +11,7 @@ using err::Error;
namespace commands
{
ListCommand::ListCommand() : SubCommand("list", 100, true)
ListCommand::ListCommand() : SubCommand("list", 100, false)
{
}