If I write:
res.status(200).download(p, 'he/lo/ldkaf/fd.mp3');
the download will show up as:
fd.mp3
currently the only workaround is turning all the slashes into spaces:
res.status(200).download(p, 'he/lo/ldkaf/fd.mp3'.split('/').join(' '));
But I'd like to keep the slashes. Is there a solution to this problem?