Skip to content

Commit 7e59250

Browse files
metalspawnFelipe Zimmerle
authored andcommitted
Fix JSON parsing error message
1 parent b58f713 commit 7e59250

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/transaction.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,9 +694,9 @@ int Transaction::processRequestBody() {
694694
if (error.empty() == false) {
695695
m_variableReqbodyError.set("1", m_variableOffset);
696696
m_variableReqbodyProcessorError.set("1", m_variableOffset);
697-
m_variableReqbodyErrorMsg.set("XML parsing error: " + error,
697+
m_variableReqbodyErrorMsg.set("JSON parsing error: " + error,
698698
m_variableOffset);
699-
m_variableReqbodyProcessorErrorMsg.set("XML parsing error: " \
699+
m_variableReqbodyProcessorErrorMsg.set("JSON parsing error: " \
700700
+ error, m_variableOffset);
701701
} else {
702702
m_variableReqbodyError.set("0", m_variableOffset);

0 commit comments

Comments
 (0)