From c913e667c8ff5bc4980ce360deeda53dd455b267 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 27 Feb 2026 10:22:33 -0500 Subject: [PATCH] Further internally invert noslash --- RedumpTool/Features/QueryFeature.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/RedumpTool/Features/QueryFeature.cs b/RedumpTool/Features/QueryFeature.cs index 2518abb..2bc591b 100644 --- a/RedumpTool/Features/QueryFeature.cs +++ b/RedumpTool/Features/QueryFeature.cs @@ -64,7 +64,7 @@ namespace RedumpTool.Features int? attemptCount = AttemptCountInput.Value; int? timeout = TimeoutInput.Value; bool quick = QuickSearchInput.Value; - bool noSlash = NoSlashInput.Value; + bool convertForwardSlashes = !NoSlashInput.Value; // Output directory validation if (!onlyList && !ValidateAndCreateOutputDirectory(outputDirectory)) @@ -93,16 +93,16 @@ namespace RedumpTool.Features if (quick) { if (onlyList) - processingTask = _client.ListSearchResults(queryString, !noSlash); + processingTask = _client.ListSearchResults(queryString, convertForwardSlashes); else - processingTask = _client.DownloadSearchResults(queryString, outputDirectory, !noSlash); + processingTask = _client.DownloadSearchResults(queryString, outputDirectory, convertForwardSlashes); } else { if (onlyList) - processingTask = _client.ListDiscsResults(queryString, !noSlash); + processingTask = _client.ListDiscsResults(queryString, convertForwardSlashes); else - processingTask = _client.DownloadDiscsResults(queryString, outputDirectory, !noSlash); + processingTask = _client.DownloadDiscsResults(queryString, outputDirectory, convertForwardSlashes); } // Retrieve the result