summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Newson <rnewson@apache.org>2023-01-04 17:01:36 +0000
committerRobert Newson <rnewson@apache.org>2023-01-04 17:01:39 +0000
commit2c1ca11168c386e475aa6aedfde71b7f497d39bf (patch)
tree14d0baaf4ef94c49b32b78c593f132e87d94b250
parentf439d4ec2e58bdf06f918012d46a6449e70c4dda (diff)
downloadcouchdb-2c1ca11168c386e475aa6aedfde71b7f497d39bf.tar.gz
fix undef when parsing replication doc body
Closes https://github.com/apache/couchdb-fauxton/issues/1382
-rw-r--r--src/couch_replicator/src/couch_replicator_parse.erl2
1 files changed, 1 insertions, 1 deletions
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).