From 2209af6f41bd73cd30b0c8c9cd8d81bbdd5a5958 Mon Sep 17 00:00:00 2001 From: EzioTheDeadPoet <52624146+EzioTheDeadPoet@users.noreply.github.com> Date: Sat, 23 Nov 2024 18:04:04 +0100 Subject: [PATCH 1/2] adds mediafire to the downloaders that are assumed to be valid during checks --- Wabbajack.CLI/Verbs/ValidateLists.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Wabbajack.CLI/Verbs/ValidateLists.cs b/Wabbajack.CLI/Verbs/ValidateLists.cs index 142eb0153..4cd72cf5a 100644 --- a/Wabbajack.CLI/Verbs/ValidateLists.cs +++ b/Wabbajack.CLI/Verbs/ValidateLists.cs @@ -635,6 +635,8 @@ private async Task DeleteOldMirrors(IEnumerable mirroredFiles, IReadOnlySe return (ArchiveStatus.Valid, archive); case Nexus: return (ArchiveStatus.Valid, archive); + case MediaFire: + return (ArchiveStatus.Valid, archive); case VectorPlexus: return (ArchiveStatus.InValid, archive); } From 7e560e547e55ee2b44577876e4ee73f82cbae2dc Mon Sep 17 00:00:00 2001 From: EzioTheDeadPoet <52624146+EzioTheDeadPoet@users.noreply.github.com> Date: Sat, 23 Nov 2024 18:06:27 +0100 Subject: [PATCH 2/2] update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3e116715..099fcee38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ #### Version - 3.7.5.1 - 11/23/2024 * Reverted "Wabbajack will now put modfile Titles, Description and Version into the `.meta` file." as it didnt account for formatting in descriptions that could confuse the iniparser * Fix a coding error in the login check for compiling that prevents compiles from starting +* Fix for some mediafire sources not being ignored during validation. #### Version - 3.7.5.0 - 11/23/2024 * Fix for Wabbajack trying to work with an expired OAuth token.