Skip to content
Merged
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 @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed issue where 403 errors were being raised during a user driven permission sync against a self-hosted code host. [#729](https://github.com/sourcebot-dev/sourcebot/pull/729)
- Fixed "ambiguous argument 'HEAD^{commit}': unknown revision or path not in the working tree" error for blank repositories. [#733](https://github.com/sourcebot-dev/sourcebot/pull/733)
- Fixed issue where folders containing files with non-ASCII characters in their paths would appear duplicated in the file tree. [#726](https://github.com/sourcebot-dev/sourcebot/pull/726)

## [4.10.8] - 2026-01-13

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