act: Use correct service session limit. (#6670)
This commit is contained in:
parent
c00768d6d0
commit
753b36c6ef
|
@ -10,7 +10,7 @@
|
|||
namespace Service::ACT {
|
||||
|
||||
Module::Interface::Interface(std::shared_ptr<Module> act, const char* name)
|
||||
: ServiceFramework(name, 1 /* Placeholder */), act(std::move(act)) {}
|
||||
: ServiceFramework(name, 3), act(std::move(act)) {}
|
||||
|
||||
Module::Interface::~Interface() = default;
|
||||
|
||||
|
|
Reference in New Issue