Fixed: handle null value in SentReceivedAggregator

This commit is contained in:
Julien Fastré 2022-11-02 11:34:50 +01:00
parent 17a7b053cf
commit e46b285d3e

View File

@ -48,6 +48,9 @@ class SentReceivedAggregator implements AggregatorInterface
}
switch ($value) {
case null:
return '';
case 'sent':
return 'is sent';