From c100661ef11832e429e083fccfffe8d95bac71ee Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 6 Mar 2026 08:48:07 -0500 Subject: [PATCH] Some pages are missing added dates --- SabreTools.RedumpLib/Web/RedumpClient.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SabreTools.RedumpLib/Web/RedumpClient.cs b/SabreTools.RedumpLib/Web/RedumpClient.cs index 6d9172e..39553e7 100644 --- a/SabreTools.RedumpLib/Web/RedumpClient.cs +++ b/SabreTools.RedumpLib/Web/RedumpClient.cs @@ -1119,7 +1119,8 @@ namespace SabreTools.RedumpLib.Web // If the downloaded data is invalid or otherwise empty, skip it var hasAddedDate = Constants.AddedRegex.Match(discPage); - if (!hasAddedDate.Success) + var hasModifiedDate = Constants.LastModifiedRegex.Match(discPage); + if (!hasAddedDate.Success && !hasModifiedDate.Success) { Console.WriteLine($"ID {paddedId} retieved an empty page, skipping..."); return false;