nickva commented on a change in pull request #3430:
URL: https://github.com/apache/couchdb/pull/3430#discussion_r595258295



##########
File path: src/chttpd/src/chttpd_changes.erl
##########
@@ -466,7 +466,12 @@ send_changes_doc_ids(Db, StartSeq, Dir, Fun, Acc0, 
{doc_ids, _Style, DocIds}) ->
 
 
 send_changes_design_docs(Db, StartSeq, Dir, Fun, Acc0, {design_docs, _Style}) 
->
-    FoldFun = fun(FDI, Acc) -> {ok, [FDI | Acc]} end,
+    FoldFun = fun(FDI, Acc) ->
+        case FDI of
+            {row, Row} -> {ok, [fabric2_db:get_full_doc_info(Db, 
proplists:get_value(id, Row)) | Acc]};

Review comment:
       Let's make sure the line is shorter than 80 columns if possible.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to