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
{{ message }}
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
If file path contains characters with codes more than 255 TiddlyFox shows message box with error and does not save file.
OS: Windows 8.1
Browser: Firefox 43.0.4
The text was updated successfully, but these errors were encountered:
How to fix:
File tiddlyfox.js, line 23 var pathname = document.location.toString().split("#")[0];
Change this line to: var pathname = decodeURI(document.location.toString().split("#")[0]);
URI from document location is encoded and you should decode it before using as file name.
If file path contains characters with codes more than 255 TiddlyFox shows message box with error and does not save file.
OS: Windows 8.1
Browser: Firefox 43.0.4
The text was updated successfully, but these errors were encountered: