Selaa lähdekoodia

Fixed music not playing in case of brutal shutdown

Brendan Abolivier 8 vuotta sitten
vanhempi
commit
951f2676bf
Signed by: Brendan Abolivier <contact@brendanabolivier.com> GPG key ID: 8EF1500759F70623
1 muutettua tiedostoa jossa 5 lisäystä ja 0 poistoa
  1. 5
    0
      welcomehome

+ 5
- 0
welcomehome Näytä tiedosto

@@ -117,6 +117,11 @@ init() {
117 117
     # Set volume to the right value
118 118
     set_volume $volume
119 119
 
120
+    # Removing lock file in case of ungraceful shutdown
121
+    if [ ! -f $lock_file ]; then
122
+        rm $lock_file
123
+    fi
124
+
120 125
     log "Initialisation complete"
121 126
 }
122 127