diff --git a/src/freedombone-app-hubzilla b/src/freedombone-app-hubzilla
index a45f084b6a8518c2b3b084a6962c8f23b8ab309c..093da292b58974f1e8f43fc4b46a644c88d1b92d 100755
--- a/src/freedombone-app-hubzilla
+++ b/src/freedombone-app-hubzilla
@@ -141,9 +141,11 @@ function restore_remote_hubzilla {
 }
 
 function remove_hubzilla {
-    if ! grep -Fxq "install_hubzilla" $COMPLETION_FILE; then
+    if ! grep -Fxq "Hubzilla domain" $COMPLETION_FILE; then
         return
     fi
+    echo $'Removing Hubzilla'
+    HUBZILLA_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "Hubzilla domain" | awk -F ':' '{print $2}')
     nginx_dissite $HUBZILLA_DOMAIN_NAME
     if [ -d /var/www/$HUBZILLA_DOMAIN_NAME ]; then
         rm -rf /var/www/$HUBZILLA_DOMAIN_NAME
@@ -157,6 +159,7 @@ function remove_hubzilla {
     remove_onion_service hubzilla ${HUBZILLA_ONION_PORT}
     sed -i '/install_hubzilla/d' $COMPLETION_FILE
     sed -i '/Hubzilla /d' $COMPLETION_FILE
+    echo $'Hubzilla was removed'
 }
 
 function install_hubzilla {