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
Decode URL percent-encoding in pathLikeToString fallback
Fix URL pathname decoding in the fileURLToPath() catch block by adding
decodeURIComponent() to convert percent-encoded characters (like %20)
back to their literal values (spaces). The URL pathname property
retains percent-encoding, but file paths require decoded characters.
This is not platform-specific; all URLs use percent-encoding on all
operating systems.
0 commit comments