From 6e2bbaf2e7b2413864a8542c834bae8829ed0978 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Thu, 22 Nov 2012 12:25:17 -0800 Subject: [PATCH] Fix missing metadata bug. --- src/cpp/ripple/FieldNames.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/FieldNames.h b/src/cpp/ripple/FieldNames.h index 507a2bd7f..cec031d8d 100644 --- a/src/cpp/ripple/FieldNames.h +++ b/src/cpp/ripple/FieldNames.h @@ -46,7 +46,7 @@ public: static const int sMD_DeleteFinal = 0x04; // final value when it is deleted static const int sMD_Create = 0x08; // value when it's created static const int sMD_Always = 0x10; // value when node containing it is affected at all - static const int sMD_Default = sMD_ChangeOrig | sMD_ChangeNew | sMD_DeleteFinal; + static const int sMD_Default = sMD_ChangeOrig | sMD_ChangeNew | sMD_DeleteFinal | sMD_Create; protected: static std::map codeToField;