From cd9d73eb65f1e9b1d4183540f91dc3e0a4898432 Mon Sep 17 00:00:00 2001 From: Kevin Jump Date: Mon, 15 Apr 2024 21:46:52 +0100 Subject: [PATCH] Fix #607 - datatypes don't delete on final pass. (#615) --- uSync.BackOffice/SyncHandlers/SyncHandlerRoot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uSync.BackOffice/SyncHandlers/SyncHandlerRoot.cs b/uSync.BackOffice/SyncHandlers/SyncHandlerRoot.cs index 0ed21ce4..a683c9f2 100644 --- a/uSync.BackOffice/SyncHandlers/SyncHandlerRoot.cs +++ b/uSync.BackOffice/SyncHandlers/SyncHandlerRoot.cs @@ -518,7 +518,7 @@ virtual public IEnumerable ImportElement(XElement node, string file .AsEnumerableOfOne(); } - var shortFilename = Path.GetFileNameWithoutExtension(filename); + var shortFilename = filename; if (_mutexService.FireItemStartingEvent(new uSyncImportingItemNotification(node, (ISyncHandler)this))) {