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
In my case I could fix the issue by simply removing the use of decodeURIComponent() since item.getFilename() already returns a decoded string. But I don't know if it is safe or not to remove this ?
The text was updated successfully, but these errors were encountered:
When I try to download a file with a name that contains a
%
symbol It will throw an error and then open the save dialogThe file I try to download
https://files.beatconnect.io/b/639236+UNISON+SQUARE+GARDEN+-+10%25+roll%2C+10%25+romance+%28TV+Size%29.OuToU.osz
It happens when
decodeURIComponent()
is called here :electron-download-manager/index.js
Line 46 in 53f9005
In my case I could fix the issue by simply removing the use of
decodeURIComponent()
sinceitem.getFilename()
already returns a decoded string. But I don't know if it is safe or not to remove this ?The text was updated successfully, but these errors were encountered: