Skip to content

Commit 5db4d26

Browse files
changelog + small nit
1 parent d8e26ab commit 5db4d26

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Fixes
1111
- Change connection manager upsert timeout to 5 minutes
12+
- Fix issue with repo display names being poorly formatted, especially for gerrit. ([#259](https://github.com/sourcebot-dev/sourcebot/pull/259))
1213

1314
## [3.0.1] - 2025-04-01
1415

packages/backend/src/repoCompileUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ export const compileGerritConfig = async (
249249
// Handle case where webUrl is just a gitiles path
250250
// https://github.com/GerritCodeReview/plugins_gitiles/blob/5ee7f57/src/main/java/com/googlesource/gerrit/plugins/gitiles/GitilesWeblinks.java#L50
251251
if (webUrl.startsWith('/plugins/gitiles/')) {
252-
return `${hostUrl}${webUrl}`;
252+
return path.join(hostUrl, webUrl);
253253
} else {
254254
return webUrl;
255255
}

0 commit comments

Comments
 (0)