From 91933c66f309bbd5d00d9d9c4ab777dc829f81b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Sun, 27 Oct 2024 17:31:10 +0100 Subject: [PATCH] missed one. --- src/modules/StoreForwardModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/StoreForwardModule.cpp b/src/modules/StoreForwardModule.cpp index c111d5299..77e0bf1de 100644 --- a/src/modules/StoreForwardModule.cpp +++ b/src/modules/StoreForwardModule.cpp @@ -103,7 +103,7 @@ void StoreForwardModule::populateSDCard() LOG_INFO("Creating StoreForward directory"); SD.mkdir("/storeforward"); } - this->storageType = StorageType::SDCARD; + this->storageType = StorageType::ST_SDCARD; uint32_t numberOfPackets = (this->records ? this->records : (((SD.totalBytes() / 3) * 2) / sizeof(PacketHistoryStruct))); // only allocate space for one temp copy this->packetHistory = (PacketHistoryStruct *)malloc(sizeof(PacketHistoryStruct));