Skip to content

Commit

Permalink
Fix missing interface criteria when updating display preferences
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienClairembault authored and trasher committed Nov 4, 2024
1 parent d18bd34 commit 9a1998a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/DisplayPreference.php
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,10 @@ public function updateOrder(string $itemtype, int $users_id, array $order, strin
'interface' => $interface,
],
[
'itemtype' => $itemtype,
'users_id' => $users_id,
'num' => $num,
'itemtype' => $itemtype,
'users_id' => $users_id,
'num' => $num,
'interface' => $interface,
]
);
}
Expand Down

0 comments on commit 9a1998a

Please sign in to comment.