mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix the fix for the critical bug
This commit is contained in:
@@ -176,9 +176,9 @@ namespace SabreTools.Core.Tools
|
|||||||
|
|
||||||
// Otherwise, make sure that every character is a proper match
|
// Otherwise, make sure that every character is a proper match
|
||||||
#if NET7_0_OR_GREATER
|
#if NET7_0_OR_GREATER
|
||||||
if (!hash.Any(c => char.IsAsciiHexDigit(c)))
|
if (hash.Any(c => !char.IsAsciiHexDigit(c)))
|
||||||
#else
|
#else
|
||||||
if (!hash.Any(c => c.IsAsciiHexDigit()))
|
if (hash.Any(c => !c.IsAsciiHexDigit()))
|
||||||
#endif
|
#endif
|
||||||
hash = string.Empty;
|
hash = string.Empty;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user