Skip to content

Commit

Permalink
fix: use correct variable
Browse files Browse the repository at this point in the history
Signed-off-by: Cleopatra Enjeck M <patrathewhiz@gmail.com>
  • Loading branch information
enjeck committed May 31, 2024
1 parent a95bf94 commit e51cca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Db/Row2Mapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ private function insertOrUpdateCell(int $rowId, int $columnId, $value): void {
if ($columnType == 'usergroup') {
try {
// TODO Maybe these should be a transaction?
$cellMapper->deleteAllForRow($row->getId());
$cellMapper->deleteAllForRow($rowId);
$this->insertCell($rowId, $columnId, $value);
} catch (Exception $e) {
$this->logger->error($e->getMessage(), ['exception' => $e]);
Expand Down

0 comments on commit e51cca5

Please sign in to comment.