You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 9, 2018. It is now read-only.
This package doesn't fully work with express 4.x (haven't tested other versions). More specifically, the sending of headers and status is not working, and deprecated respectively.
Fixing this is fairly easy:
Replace this.header('Content-Type', 'text/csv'); with this.set('Content-Type', 'text/csv');
and return this.send(body, headers, status); with:
This package doesn't fully work with express 4.x (haven't tested other versions). More specifically, the sending of headers and status is not working, and deprecated respectively.
Fixing this is fairly easy:
Replace
this.header('Content-Type', 'text/csv');
withthis.set('Content-Type', 'text/csv');
and
return this.send(body, headers, status);
with:The text was updated successfully, but these errors were encountered: