Revert "fix array_diff_assoc(): Argument #1 ($array) must be of type array, null given"

As it breaks setting most personal preferences :(

This reverts commit 3da02f2dfd.
This commit is contained in:
ralf 2024-02-14 20:14:12 +02:00
parent 3da02f2dfd
commit e210b7fafe

View File

@ -891,7 +891,7 @@ class Preferences
foreach($prefs as $app => $value)
{
// check if app preferences have changed, if not no need to save them
if ($old_prefs && !array_diff_assoc($old_prefs[$app] ?? [], $value)) continue;
if ($old_prefs && !array_diff_assoc($old_prefs[$app], $value)) continue;
if (!$changed++) $this->db->transaction_begin();