Current implementation of MergeRecursive function works incorrectly when loading a new page with header that already exists, new data completely overwrites old.
Consider the following example:
so to get this feature work correctly we need either prefetch all pages before current too, which
is totally inefficient of course or to merge new data with old before passing it to the callback
which is not so convenient.
Current implementation of
MergeRecursive
function works incorrectly when loading a new page with header that already exists, new data completely overwrites old. Consider the following example:gives
instead of expected
so to get this feature work correctly we need either prefetch all pages before current too, which is totally inefficient of course or to merge new data with old before passing it to the
callback
which is not so convenient.