Skip to content

Commit e95d7bd

Browse files
changelog + small nit
1 parent 2018ed6 commit e95d7bd

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Fixes
11+
- Fix issue with repo display names being poorly formatted, especially for gerrit. ([#259](https://github.com/sourcebot-dev/sourcebot/pull/259))
12+
1013
## [3.0.1] - 2025-04-01
1114

1215
### Fixes

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)