Browse Source

Buffer<> has no .empty() method

pull/2/head
Grant Limberg 5 years ago
parent
commit
70b1b4ecc7
  1. 2
      service/OneService.cpp

2
service/OneService.cpp

@ -2386,7 +2386,7 @@ public:
Dictionary<4096> nc;
nc.load(nlcbuf.c_str());
Buffer<1024> allowManaged;
if (nc.get("allowManaged", allowManaged) && !allowManaged.empty()) {
if (nc.get("allowManaged", allowManaged) && !allowManaged.size() == 0) {
std::string addresses (allowManaged.begin(), allowManaged.size());
if (allowManaged.size() <= 5) { // untidy parsing for backward compatibility
if (allowManaged[0] == '1' || allowManaged[0] == 't' || allowManaged[0] == 'T') {

Loading…
Cancel
Save