diff --git a/Elwig/Dialogs/DeleteMemberDialog.xaml.cs b/Elwig/Dialogs/DeleteMemberDialog.xaml.cs
index 06494bf..77cfd75 100644
--- a/Elwig/Dialogs/DeleteMemberDialog.xaml.cs
+++ b/Elwig/Dialogs/DeleteMemberDialog.xaml.cs
@@ -41,7 +41,7 @@ namespace Elwig.Dialogs {
         }
 
         private void Update() {
-            var t = NameInput.Text.ToLower();
+            var t = NameInput.Text.ToLower().Split(' ');
             var nameValid = NameParts.All(t.Contains);
             UpdateCheckBox(AreaComInput);
             UpdateCheckBox(DeliveryInput);
diff --git a/Elwig/Elwig.csproj b/Elwig/Elwig.csproj
index af157d8..6b7076e 100644
--- a/Elwig/Elwig.csproj
+++ b/Elwig/Elwig.csproj
@@ -7,7 +7,7 @@
     <UseWPF>true</UseWPF>
     <PreserveCompilationContext>true</PreserveCompilationContext>
     <ApplicationIcon>Resources\Images\Elwig.ico</ApplicationIcon>
-    <Version>0.8.2</Version>
+    <Version>0.8.3</Version>
     <SatelliteResourceLanguages>de-AT</SatelliteResourceLanguages>
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     <ApplicationManifest>app.manifest</ApplicationManifest>