File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Fixes
11
11
- 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 ) )
12
13
13
14
## [ 3.0.1] - 2025-04-01
14
15
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ export const compileGerritConfig = async (
249
249
// Handle case where webUrl is just a gitiles path
250
250
// https://github.com/GerritCodeReview/plugins_gitiles/blob/5ee7f57/src/main/java/com/googlesource/gerrit/plugins/gitiles/GitilesWeblinks.java#L50
251
251
if ( webUrl . startsWith ( '/plugins/gitiles/' ) ) {
252
- return ` ${ hostUrl } ${ webUrl } ` ;
252
+ return path . join ( hostUrl , webUrl ) ;
253
253
} else {
254
254
return webUrl ;
255
255
}
You can’t perform that action at this time.
0 commit comments