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 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
99### Fixed
1010
1111- Fixes [ #3841 ] ( https://github.com/gitkraken/vscode-gitlens/issues/3841 ) - Inspect & Graph Details: autolinks rendering when enabled setting is false
12+ - Fixes [ #3218 ] ( https://github.com/gitkraken/vscode-gitlens/issues/3218 ) - Bitbucket Server remote - "scm/" path prefix not removed (regression)
1213
1314## [ 16.3.0] - 2025-02-11
1415
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export class BitbucketServerRemote extends RemoteProvider {
5858 if ( this . path . startsWith ( 'scm/' ) ) {
5959 const path = this . path . replace ( 'scm/' , '' ) ;
6060 const index = path . indexOf ( '/' ) ;
61- return [ this . path . substring ( 0 , index ) , this . path . substring ( index + 1 ) ] ;
61+ return [ path . substring ( 0 , index ) , path . substring ( index + 1 ) ] ;
6262 }
6363
6464 return super . splitPath ( ) ;
You can’t perform that action at this time.
0 commit comments