From 9146a0e53c5989a456052324cff4634a09fdd4fc Mon Sep 17 00:00:00 2001 From: slawkens Date: Sun, 15 Feb 2026 02:01:57 +0100 Subject: [PATCH] Parse last item --- system/src/Server/TOML/ItemsParser.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/src/Server/TOML/ItemsParser.php b/system/src/Server/TOML/ItemsParser.php index 0455f474..d281cc67 100644 --- a/system/src/Server/TOML/ItemsParser.php +++ b/system/src/Server/TOML/ItemsParser.php @@ -32,6 +32,8 @@ class ItemsParser $parse .= $line; } + $ret[] = parse_ini_string($parse); + fclose($handle); }