From 44db746b83bfd7aaca22417461b32e199bedd064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bouc=CC=8Cek?= Date: Tue, 19 Oct 2021 13:32:18 +0200 Subject: [PATCH] Enabler: Fix filtered values saved as list --- src/Enabler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Enabler.php b/src/Enabler.php index 97fa99b..0141930 100644 --- a/src/Enabler.php +++ b/src/Enabler.php @@ -213,7 +213,7 @@ function ($token) { } ); - $this->writeStorage($list); + $this->writeStorage(array_values($list)); } // TOKEN UTILS -----------------------------------------------------------------------------------------------------