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
Ok, I have a vault name containing the special character "é", I also have the exact same character in the subfolder path. The extension escape this character with %25C3%25A9, in both cases, which is correct.
However when I clip a content, I got the error message:
"Unable to find vault [...]%25C3%25A9[...]"
Even thought considering the escape character, it does exist.
I investigated a bit, when I manually remove the %25 on the vault name (%25 is the escape of %), i.e. the escape become %C3%A9, tadaaa it works. And I DIDN'T apply the same change on the subfolder path ! So my conclusion, the vault name and folder path are NOT escaped similarly inside obsidian advanced URI extension... How to solve this ?
The text was updated successfully, but these errors were encountered:
A simple workarround, would be to escape special character in vault name without escaping the '%' (%25),
e.g. : é -> %C3%A9
When on subfolder the current escape can be applied:
e.g.: é -> %25C3%25A9
Ok, I have a vault name containing the special character "é", I also have the exact same character in the subfolder path. The extension escape this character with %25C3%25A9, in both cases, which is correct.
However when I clip a content, I got the error message:
"Unable to find vault [...]%25C3%25A9[...]"
Even thought considering the escape character, it does exist.
I investigated a bit, when I manually remove the %25 on the vault name (%25 is the escape of %), i.e. the escape become %C3%A9, tadaaa it works. And I DIDN'T apply the same change on the subfolder path ! So my conclusion, the vault name and folder path are NOT escaped similarly inside obsidian advanced URI extension... How to solve this ?
The text was updated successfully, but these errors were encountered: