From d55fa6c34b8053544eee0a5dc310f34f35004cfe Mon Sep 17 00:00:00 2001 From: AZero13 Date: Wed, 26 Nov 2025 13:19:37 -0500 Subject: [PATCH] other.evaluate should be try --- .../Predicate/LocalizedString.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/FoundationInternationalization/Predicate/LocalizedString.swift b/Sources/FoundationInternationalization/Predicate/LocalizedString.swift index 0d46f8cbd..e4e6b2088 100644 --- a/Sources/FoundationInternationalization/Predicate/LocalizedString.swift +++ b/Sources/FoundationInternationalization/Predicate/LocalizedString.swift @@ -96,7 +96,7 @@ extension PredicateExpressions { } public func evaluate(_ bindings: PredicateBindings) throws -> Output { - try root.evaluate(bindings).localizedCompare(other.evaluate(bindings)) + try root.evaluate(bindings).localizedCompare(try other.evaluate(bindings)) } }