Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Commit d212adb

Browse files
Merge pull request #874 from telerik/milanov/fix-await-in-livesync-service-base
Fix await in livesync service base
2 parents cf0dc4b + b68b809 commit d212adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/livesync-service-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class LiveSyncServiceBase implements ILiveSyncServiceBase {
192192
if (deviceFilesAction) {
193193
await deviceFilesAction(deviceAppData, device, localToDevicePaths);
194194
} else {
195-
this.transferFiles(deviceAppData, localToDevicePaths, projectFilesPath, ! await filesToSync);
195+
await this.transferFiles(deviceAppData, localToDevicePaths, projectFilesPath, !filesToSync);
196196
}
197197

198198
this.$logger.info("Applying changes...");

0 commit comments

Comments
 (0)