File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ export class IOSDeviceLiveSyncService extends DeviceLiveSyncServiceBase implemen
108
108
private async refreshApplicationCore ( projectData : IProjectData ) {
109
109
let didRefresh = true ;
110
110
if ( this . canRefreshWithNotification ( projectData ) ) {
111
- didRefresh = await this . refreshWithNotification ( projectData , didRefresh ) ;
111
+ didRefresh = await this . refreshWithNotification ( projectData ) ;
112
112
} else {
113
113
if ( await this . setupSocketIfNeeded ( projectData ) ) {
114
114
await this . reloadPage ( ) ;
@@ -120,7 +120,8 @@ export class IOSDeviceLiveSyncService extends DeviceLiveSyncServiceBase implemen
120
120
return didRefresh ;
121
121
}
122
122
123
- private async refreshWithNotification ( projectData : IProjectData , didRefresh : boolean ) {
123
+ private async refreshWithNotification ( projectData : IProjectData ) {
124
+ let didRefresh = false ;
124
125
await this . $lockService . executeActionWithLock ( async ( ) => {
125
126
this . _isLiveSyncSuccessful = null ;
126
127
this . attachToLiveSyncLogs ( ) ;
You can’t perform that action at this time.
0 commit comments