Skip to content

Commit

Permalink
Fix #607 - datatypes don't delete on final pass. (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJump committed Apr 15, 2024
1 parent 60a2cd7 commit cd9d73e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uSync.BackOffice/SyncHandlers/SyncHandlerRoot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ virtual public IEnumerable<uSyncAction> ImportElement(XElement node, string file
.AsEnumerableOfOne();
}

var shortFilename = Path.GetFileNameWithoutExtension(filename);
var shortFilename = filename;

if (_mutexService.FireItemStartingEvent(new uSyncImportingItemNotification(node, (ISyncHandler)this)))
{
Expand Down

0 comments on commit cd9d73e

Please sign in to comment.