From 97d54fa58db7de0c2dc708fec0d00fe91c568907 Mon Sep 17 00:00:00 2001 From: ildyria Date: Sun, 21 Jun 2026 22:41:16 +0200 Subject: [PATCH] tier might be none for perpetual license --- src/Rotation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Rotation.php b/src/Rotation.php index 240ae26..3e9be04 100644 --- a/src/Rotation.php +++ b/src/Rotation.php @@ -49,7 +49,7 @@ public function rotate(): RotationResult return RotationResult::fail($data['message']); } - if (!isset($data['value']) || !isset($data['tier']) || $data['tier'] === 'none') { + if (!isset($data['value']) || !isset($data['tier'])) { Cache::put(self::CACHE_KEY, true, now()->addDay()); return RotationResult::fail('No valid license in response.');