Kaynağa Gözat

Fix PLR when card isn't mounted yet

Fixes a regression from 9bff67bc74
Scott Lahteine 5 yıl önce
ebeveyn
işleme
a2e9a02429
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1
    1
      Marlin/src/feature/powerloss.cpp

+ 1
- 1
Marlin/src/feature/powerloss.cpp Dosyayı Görüntüle

@@ -100,7 +100,7 @@ void PrintJobRecovery::changed() {
100 100
  * If a saved state exists send 'M1000 S' to initiate job recovery.
101 101
  */
102 102
 void PrintJobRecovery::check() {
103
-  //if (!card.isMounted()) card.mount();
103
+  if (!card.isMounted()) card.mount();
104 104
   if (card.isMounted()) {
105 105
     load();
106 106
     if (!valid()) return purge();

Loading…
İptal
Kaydet