In the dictionary code we have
evt.event.section !== "system" &&
evt.event.method !== "ExtrinsicSuccess"
which is skipping this particular event to save storage and io, but it is incorrectly implemented,
the correct expression is
!(evt.event.section === "system" &&
evt.event.method === "ExtrinsicSuccess")