diff --git a/SparkleShare/SparkleController.cs b/SparkleShare/SparkleController.cs index eb6d00f4..571bfe4b 100644 --- a/SparkleShare/SparkleController.cs +++ b/SparkleShare/SparkleController.cs @@ -106,8 +106,7 @@ namespace SparkleShare { // Remove the repository when a delete event occurs watcher.Deleted += delegate (object o, FileSystemEventArgs args) { - if (Directory.Exists (args.FullPath)) - RemoveRepository (args.FullPath); + RemoveRepository (args.FullPath); };