From 10ffd756a17cd2f149223c86c3822f98e48ec359 Mon Sep 17 00:00:00 2001 From: Max Brombach Date: Wed, 29 Oct 2025 12:56:46 -0400 Subject: [PATCH] Device: Remove erroneous API error in VSA buffer overlap check --- device/device.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/device/device.cpp b/device/device.cpp index eaa176d..2d8c6b3 100644 --- a/device/device.cpp +++ b/device/device.cpp @@ -3049,7 +3049,6 @@ std::optional Device::isVSAOverlapped(std::optional optMetada lastSectorRecord->getTimestamp() > metadata.coreMiniTimestamp; } else if(lastSectorStatus == VSAParser::RecordParseStatus::NotARecordStart) { // The vsa record buffer is not full - report(APIEvent::Type::VSAOtherError, APIEvent::Severity::Error); return false; } report(APIEvent::Type::VSABufferFormatError, APIEvent::Severity::Error);