This commit is contained in:
devdatt 2025-12-27 15:07:43 +05:30
parent f5ea9786f7
commit 31f94f81b3
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ $data = $defaults;
if (is_file($jsonFile)) { if (is_file($jsonFile)) {
$stored = json_decode(file_get_contents($jsonFile), true); $stored = json_decode(file_get_contents($jsonFile), true);
if (is_array($stored)) { if (is_array($stored)) {
$data = array_merge($data, $stored); $data = $stored;
} }
} }