mirror of
				https://github.com/Telecominfraproject/wlan-cloud-owprov.git
				synced 2025-11-03 20:17:54 +00:00 
			
		
		
		
	Compare commits
	
		
			4 Commits
		
	
	
		
			version_up
			...
			release/3.
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					1bd1cf0af6 | ||
| 
						 | 
					020ff8641a | ||
| 
						 | 
					342c6900ef | ||
| 
						 | 
					a549024a29 | 
@@ -67,9 +67,9 @@ namespace OpenWifi {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        bool Get(const char *key, std::vector<std::string> &Value) {
 | 
					        bool Get(const char *key, std::vector<std::string> &Value) {
 | 
				
			||||||
            if(Registry_->has(key) && !Registry_->isNull(key) && Registry_->isArray(key)) {
 | 
					            if(Registry_->has(key) && !Registry_->isNull(key) && Registry_->isArray(key)) {
 | 
				
			||||||
                auto Arr = Registry_->get(key);
 | 
					                auto pArr = Registry_->getArray(key);
 | 
				
			||||||
                for(const auto &v:Arr) {
 | 
					                for(const auto &v : *pArr) {
 | 
				
			||||||
                    Value.emplace_back(v);
 | 
					                    Value.emplace_back(v.toString());
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
                return true;
 | 
					                return true;
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user