Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Add warning logs when local repo index fails to match pattern. [#712](https://github.com/sourcebot-dev/sourcebot/pull/712)
- Fixed issue with text direction issues with special characters in filter panel. [#474](https://github.com/sourcebot-dev/sourcebot/pull/474)
- Fixed issue where folders containing files with non-ASCII characters in their paths would appear duplicated in the file tree.

## [4.10.7] - 2025-12-29

Expand Down
6 changes: 6 additions & 0 deletions packages/web/src/features/fileTree/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ export const getTree = async (params: { repoName: string, revisionName: string }
let result: string;
try {
result = await git.raw([
// Disable quoting of non-ASCII characters in paths
'-c', 'core.quotePath=false',
'ls-tree',
revisionName,
// recursive
Expand Down Expand Up @@ -117,6 +119,8 @@ export const getFolderContents = async (params: { repoName: string, revisionName
let result: string;
try {
result = await git.raw([
// Disable quoting of non-ASCII characters in paths
'-c', 'core.quotePath=false',
'ls-tree',
revisionName,
// format as output as {type},{path}
Expand Down Expand Up @@ -166,6 +170,8 @@ export const getFiles = async (params: { repoName: string, revisionName: string
let result: string;
try {
result = await git.raw([
// Disable quoting of non-ASCII characters in paths
'-c', 'core.quotePath=false',
'ls-tree',
revisionName,
// recursive
Expand Down