[ arbadacarbaYK/gittr ] Docs: Add UTF-8 file path encoding guidance for API calls
- Document that file paths must be URL-encoded using encodeURIComponent()
- Add examples showing proper encoding for non-ASCII characters (Cyrillic, Chinese, etc.)
- Clarify that API endpoints automatically decode and handle UTF-8 correctly
- Update code examples in FILE_FETCHING_INSIGHTS.md to show proper encoding
[ arbadacarbaYK/gittr ] Fix: Preserve files and default publicRead when bridge check updates repoData
- When checkBridgeExists completes, preserve files from current repoData state instead of overwriting
- Default publicRead to true (undefined = public) for old repos pushed before public/private changes
- This fixes the issue where files were shown briefly then hidden after bridge check completed
- Files are now preserved when repoData is updated from localStorage after bridge verification
Root cause: checkBridgeExists was reloading repo from localStorage and calling setRepoData(updatedRepo), which overwrote the state and lost files that were already loaded. Also, old repos without publicRead field were being treated incorrectly.