Remove wifi service.

This commit is contained in:
SonOfGib 2024-10-17 21:28:09 -04:00
parent cc193045b4
commit 9faa119a14
No known key found for this signature in database
GPG Key ID: 70498360E9466DC5

View File

@ -68,7 +68,7 @@ ServiceList ServiceFactory::create(aasdk::messenger::IMessenger::Pointer messeng
serviceList.emplace_back(this->createVideoService(messenger));
serviceList.emplace_back(this->createBluetoothService(messenger));
serviceList.emplace_back(this->createInputService(messenger));
serviceList.emplace_back(std::make_shared<WifiService>(configuration_));
// serviceList.emplace_back(std::make_shared<WifiService>(configuration_)); Wifi service causes no video with AA > 12.6
return serviceList;
}