Skip to content

Commit

Permalink
Fix our updates array
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldiesmann committed Jul 5, 2024
1 parent bddc492 commit 2cb628a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Actions/Admin/Reactions.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public function editreactions(): void

// Did they update this one? Ignore empty ones for now
if ($reactions[$id] != $name && !empty($name)) {
$updates[$id] = $name;
$updates[] = [$id, $name];
}
}

Expand Down

0 comments on commit 2cb628a

Please sign in to comment.