Skip to content

Commit

Permalink
Update ActionItem.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SirSparkles authored Mar 28, 2018
1 parent f13980d commit 411627f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TVRename#/ItemsAndActions/ActionItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ protected void DoTidyup(DirectoryInfo di)
Debug.Assert(this.Tidyup != null);
Debug.Assert(this.Tidyup.DeleteEmpty);
#else
if (_tidyup == null || !_tidyup.DeleteEmpty)
if (this.Tidyup == null || !this.Tidyup.DeleteEmpty)
return;
#endif
// See if we should now delete the folder we just moved that file from.
Expand Down

0 comments on commit 411627f

Please sign in to comment.