Fixed: handle null value in SentReceivedAggregator

This commit is contained in:
Julien Fastré 2022-11-02 11:34:50 +01:00
parent 63129a3b8c
commit 371a7dc05c

View File

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