Adding band to SSIDTP

This commit is contained in:
stephb9959
2022-03-24 11:08:23 -07:00
parent 917582ff56
commit 7d1e52279d

View File

@@ -378,6 +378,8 @@ namespace OpenWifi::RESTAPI_utils {
inline void field_from_json(const Poco::JSON::Object::Ptr &Obj, const char *Field, int &Value) {
if(Obj->isObject(Field)) {
Value = Obj->get(Field);
} else {
std::cout << "Field: " << Field << std::endl;
}
}