Skip to content

Commit 8176d9a

Browse files
committed
added forgoten parameter
fix for: #2586
1 parent 00b80f7 commit 8176d9a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/services/livesync/livesync-service.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ class LiveSyncService implements ILiveSyncService {
4444
}
4545

4646
public async liveSync(platform: string, projectData: IProjectData, applicationReloadAction?: (deviceAppData: Mobile.IDeviceAppData) => Promise<void>): Promise<void> {
47-
if (this.$options.justlaunch) {
48-
this.$options.watch = false;
49-
}
47+
if (this.$options.justlaunch) {
48+
this.$options.watch = false;
49+
}
5050
let liveSyncData: ILiveSyncData[] = [];
5151

5252
if (platform) {

lib/services/platform-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export class PlatformService extends EventEmitter implements IPlatformService {
225225
}
226226
}
227227

228-
await this.preparePlatformCore(platform, appFilesUpdaterOptions, projectData, platformSpecificData);
228+
await this.preparePlatformCore(platform, appFilesUpdaterOptions, projectData, platformSpecificData, changesInfo);
229229
this.$projectChangesService.savePrepareInfo(platform, projectData);
230230
} else {
231231
this.$logger.out("Skipping prepare.");

0 commit comments

Comments
 (0)