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
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
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments