Skip to content

Commit

Permalink
Fix error creating mass contributions
Browse files Browse the repository at this point in the history
  • Loading branch information
trasher committed May 9, 2024
1 parent 5cf8741 commit 33c4bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion galette/lib/Galette/Entity/Contribution.php
Expand Up @@ -962,7 +962,7 @@ public static function setTransactionPart(Db $zdb, int $trans_id, int $contrib_i
*/
public function isFee(): bool
{
return $this->is_cotis;
return $this->is_cotis ?? false;
}

/**
Expand Down

0 comments on commit 33c4bcf

Please sign in to comment.