You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2023/01/04 17:02:10 UTC

[couchdb] branch fix-undef-replication-body-parse created (now 2c1ca1116)

This is an automated email from the ASF dual-hosted git repository.

rnewson pushed a change to branch fix-undef-replication-body-parse
in repository https://gitbox.apache.org/repos/asf/couchdb.git


      at 2c1ca1116 fix undef when parsing replication doc body

This branch includes the following new commits:

     new 2c1ca1116 fix undef when parsing replication doc body

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[couchdb] 01/01: fix undef when parsing replication doc body

Posted by rn...@apache.org.
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 <rn...@apache.org>
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).