Initial commit

This commit is contained in:
stephb9959
2022-03-11 23:05:23 -08:00
parent 629413c5fc
commit 32077133e9

View File

@@ -29,7 +29,8 @@ namespace OpenWifi {
auto State = MsgContent->Payload();
auto It = APs_.find(MsgContent->SerialNumber());
if(It!=end(APs_)) {
It->second->Update(MsgContent->Payload());
std::thread T([&] {It->second->Update(MsgContent->Payload());});
T.detach();
}
} catch (const Poco::Exception &E) {
Logger().log(E);