mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-16 03:56:54 +02:00
Fix bug preventing default from being set to null if already set to an integer.
This commit is contained in:
parent
3f4f7145a3
commit
57b5a33fbb
1 changed files with 4 additions and 3 deletions
|
@ -1018,9 +1018,10 @@ unsigned int EmbeddedNetworkController::handleControlPlaneHttpPOST(
|
|||
json ntag = json::object();
|
||||
const uint64_t tagId = OSUtils::jsonInt(tag["id"],0ULL);
|
||||
ntag["id"] = tagId;
|
||||
if (tag.find("default") == tag.end())
|
||||
ntag["default"] = json();
|
||||
else ntag["default"] = OSUtils::jsonInt(tag["default"],0ULL);
|
||||
json &dfl = tag["default"];
|
||||
if (dfl.is_null())
|
||||
ntag["default"] = dfl;
|
||||
else ntag["default"] = OSUtils::jsonInt(dfl,0ULL);
|
||||
ntags[tagId] = ntag;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue