Skip to content

Commit c3fafce

Browse files
authored
Fix: #722 - run the delete at statup (#726)
1 parent 034fc7d commit c3fafce

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

uSync.BackOffice/Services/SyncService.cs

+3
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,9 @@ public async Task<IEnumerable<uSyncAction>> ImportAsync(string[] folders, bool f
258258

259259
}
260260

261+
// run the post actions (deletes) as part of the startup import methods.
262+
var results = await SyncService.PerformPostImportAsync(handlers, actions);
263+
261264
// fire complete
262265
await _mutexService.FireBulkCompleteAsync(new uSyncImportCompletedNotification(actions));
263266

0 commit comments

Comments
 (0)