This is an automated email from the ASF dual-hosted git repository. rnewson pushed a commit to branch fix-undef-replication-body-parse in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 2c1ca11168c386e475aa6aedfde71b7f497d39bf Author: Robert Newson <[email protected]> AuthorDate: Wed Jan 4 17:01:36 2023 +0000 fix undef when parsing replication doc body Closes https://github.com/apache/couchdb-fauxton/issues/1382 --- src/couch_replicator/src/couch_replicator_parse.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/couch_replicator/src/couch_replicator_parse.erl b/src/couch_replicator/src/couch_replicator_parse.erl index 2359bbd2f..8cad4d9a3 100644 --- a/src/couch_replicator/src/couch_replicator_parse.erl +++ b/src/couch_replicator/src/couch_replicator_parse.erl @@ -490,7 +490,7 @@ get_json_value(Key, Obj) -> couch_replicator_utils:get_json_value(Key, Obj). get_json_value(Key, Obj, Default) -> - couch_replicator_util:get_json_value(Key, Obj, Default). + couch_replicator_utils:get_json_value(Key, Obj, Default). -ifdef(TEST).
