mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
Fixed: handle null value in SentReceivedAggregator
This commit is contained in:
parent
17a7b053cf
commit
e46b285d3e
@ -48,6 +48,9 @@ class SentReceivedAggregator implements AggregatorInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
switch ($value) {
|
switch ($value) {
|
||||||
|
case null:
|
||||||
|
return '';
|
||||||
|
|
||||||
case 'sent':
|
case 'sent':
|
||||||
return 'is sent';
|
return 'is sent';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user