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
I am currently using version 1.6.1 on MacOS. I have encountered a bug where attempting to name a REQUEST with any name starting with "/" results in the following error:
Error invoking remote method 'renderer:new-request': Error: ENOENT: no such file or directory, open '/Users/**/Desktop/collections/My Collection/My Folder//auth/sign-in/lookup.bru'
I've identified that the method used to create the file path is concatenating the literal name I provided with the relative project path. It seems that there is an issue with the concatenation process, leading to the creation of an incorrect file path.
Steps to Reproduce
Attempt to create "New Request" or "Rename" existing request
Enter a name for the request that starts with "/" (e.g., "/example").
Expected Behavior
Creating a request with a name starting with "/" should not result in a file path error.
The text was updated successfully, but these errors were encountered:
Bruno currently has some issues on escaping filenames (like removing other invalid characters from the filename on Windows). There is already a PR open to fix this issue: #349, but this may need some time to be merged.
Description
I am currently using version 1.6.1 on MacOS. I have encountered a bug where attempting to name a REQUEST with any name starting with "/" results in the following error:
I've identified that the method used to create the file path is concatenating the literal name I provided with the relative project path. It seems that there is an issue with the concatenation process, leading to the creation of an incorrect file path.
Steps to Reproduce
Expected Behavior
Creating a request with a name starting with "/" should not result in a file path error.
The text was updated successfully, but these errors were encountered: