mirror of
https://github.com/Telecominfraproject/wlan-cloud-owprov.git
synced 2025-10-29 17:52:28 +00:00
Compare commits
5 Commits
v3.2.0
...
release/3.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1bd1cf0af6 | ||
|
|
6ce0f2fb51 | ||
|
|
020ff8641a | ||
|
|
342c6900ef | ||
|
|
a549024a29 |
@@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.13)
|
||||
project(owprov VERSION 3.2.0)
|
||||
project(owprov VERSION 3.2.1)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
|
||||
@@ -67,9 +67,9 @@ namespace OpenWifi {
|
||||
|
||||
bool Get(const char *key, std::vector<std::string> &Value) {
|
||||
if(Registry_->has(key) && !Registry_->isNull(key) && Registry_->isArray(key)) {
|
||||
auto Arr = Registry_->get(key);
|
||||
for(const auto &v:Arr) {
|
||||
Value.emplace_back(v);
|
||||
auto pArr = Registry_->getArray(key);
|
||||
for(const auto &v : *pArr) {
|
||||
Value.emplace_back(v.toString());
|
||||
}
|
||||
return true;
|
||||
}
|
||||
@@ -91,4 +91,4 @@ namespace OpenWifi {
|
||||
|
||||
inline auto AppServiceRegistry() { return AppServiceRegistry::instance(); }
|
||||
|
||||
} // namespace OpenWifi
|
||||
} // namespace OpenWifi
|
||||
|
||||
Reference in New Issue
Block a user