libshared: Updated to 0dbe6c2818d4dc99f5d0089d6afb1559ed05ebf7

This commit is contained in:
Paul Beckingham 2017-03-04 19:18:11 -05:00
parent d1a7c313c7
commit 9051e41af5
3 changed files with 3 additions and 4 deletions

View file

@ -26,7 +26,7 @@
#include <cmake.h>
#include <FS.h>
#include <JSON2.h>
#include <JSON.h>
#include <shared.h>
#include <format.h>
#include <unicode.h>
@ -134,7 +134,7 @@ static bool setConfigVariable (Database& database, const Rules& rules, std::stri
lines.push_back ("");
// Add new line.
lines.push_back (name + " = " + JSON2::encode (value));
lines.push_back (name + " = " + json::encode (value));
database.undoTxnStart ();
database.undoTxn ("config", "", lines.back ());