From b8062a915c1ce7684727f0c20f113ff0e52a8127 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 10 Aug 2025 06:53:21 +0200 Subject: [PATCH] Fix equation. --- app/Support/Steam.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Support/Steam.php b/app/Support/Steam.php index d866a13566..0148adb468 100644 --- a/app/Support/Steam.php +++ b/app/Support/Steam.php @@ -515,7 +515,7 @@ class Steam if (null === $preference) { $singleton->setPreference($key, $currency); } - if ($currency->id !== $primary->id) { + if ($currency->id === $primary->id) { return $amount; } $current = $converter->convert($currency, $primary, $date, $amount);