Kaynağa Gözat

Fixed music not playing in case of brutal shutdown

Brendan Abolivier 8 yıl önce
ebeveyn
işleme
951f2676bf
İmzalayan: Brendan Abolivier <contact@brendanabolivier.com> GPC anahtar kimliği: 8EF1500759F70623
1 değiştirilmiş dosya ile 5 ekleme ve 0 silme
  1. 5
    0
      welcomehome

+ 5
- 0
welcomehome Dosyayı Görüntüle

@@ -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