From d1c314f2ad5c421db80df1dc74f1fff2dda76612 Mon Sep 17 00:00:00 2001 From: Ralph Wessel Date: Thu, 29 Aug 2024 23:39:47 +0100 Subject: [PATCH] Fixed JSON tags --- .../Interface/Browser/Bridge/Base/Arg/DocumentInfo.cpp | 6 +++--- .../Interface/Browser/Bridge/Functions/ErrorReport.cpp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/SpeckleConnector/Connector/Interface/Browser/Bridge/Base/Arg/DocumentInfo.cpp b/SpeckleConnector/Connector/Interface/Browser/Bridge/Base/Arg/DocumentInfo.cpp index a8a3d53..744be7d 100644 --- a/SpeckleConnector/Connector/Interface/Browser/Bridge/Base/Arg/DocumentInfo.cpp +++ b/SpeckleConnector/Connector/Interface/Browser/Bridge/Base/Arg/DocumentInfo.cpp @@ -19,9 +19,9 @@ namespace { ///Serialisation field IDs static std::array fieldID = { - Identity{"Location"}, - Identity{"Name"}, - Identity{"Id"}, + Identity{"location"}, + Identity{"name"}, + Identity{"id"}, }; } diff --git a/SpeckleLib/Speckle/Interface/Browser/Bridge/Functions/ErrorReport.cpp b/SpeckleLib/Speckle/Interface/Browser/Bridge/Functions/ErrorReport.cpp index 135929a..be4ad0f 100644 --- a/SpeckleLib/Speckle/Interface/Browser/Bridge/Functions/ErrorReport.cpp +++ b/SpeckleLib/Speckle/Interface/Browser/Bridge/Functions/ErrorReport.cpp @@ -19,9 +19,9 @@ namespace { ///Serialisation field IDs static std::array fieldID = { - Identity{"Message"}, - Identity{"Error"}, - Identity{"StackTrace"}, + Identity{"message"}, + Identity{"error"}, + Identity{"stackTrace"}, }; }