mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
Fixed: handle null value in SentReceivedAggregator
This commit is contained in:
parent
63129a3b8c
commit
371a7dc05c
@ -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