You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2023/01/05 14:21:24 UTC

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

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

jan pushed a commit to branch 3.3.x
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 008033ab50981e33317b8acb4944173da0d2d508
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).