File tree 1 file changed +2
-1
lines changed 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,6 @@ export class NativeScriptDebugAdapter extends ChromeDebugAdapter {
148
148
( ChromeDebugAdapter as any ) . SET_BREAKPOINTS_TIMEOUT = 20000 ;
149
149
150
150
this . isLiveSync = args . watch ;
151
- transformedArgs . address = this . getNormalizedAddress ( transformedArgs . address , args . platform . toLowerCase ( ) ) ;
152
151
153
152
return super . attach ( transformedArgs ) ;
154
153
}
@@ -230,6 +229,8 @@ export class NativeScriptDebugAdapter extends ChromeDebugAdapter {
230
229
args . sourceMapPathOverrides = { } ;
231
230
}
232
231
232
+ args . address = this . getNormalizedAddress ( args . address , args . platform . toLowerCase ( ) ) ;
233
+
233
234
const appDirPath = this . getAppDirPath ( args . webRoot ) || ( this . isAngularProject ( args . webRoot ) ? 'src' : 'app' ) ;
234
235
const fullAppDirPath = join ( args . webRoot , appDirPath ) ;
235
236
You can’t perform that action at this time.
0 commit comments