Browse Source

Fix condition

Bob Mottram 8 years ago
parent
commit
4d74f9119c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/freedombone-app-gnusocial

+ 1
- 1
src/freedombone-app-gnusocial View File

@@ -208,7 +208,7 @@ function gnusocial_create_database {
208 208
 }
209 209
 
210 210
 function gnusocial_running_script {
211
-    if [[ $(is_completed $FUNCNAME) == "1" ]]; then
211
+    if [[ $(is_completed "install_gnusocial") == "0" ]]; then
212 212
         return
213 213
     fi
214 214