diff --git a/Whatsapp_Chat_Exporter/ios_handler.py b/Whatsapp_Chat_Exporter/ios_handler.py index a0296a7..8034eba 100644 --- a/Whatsapp_Chat_Exporter/ios_handler.py +++ b/Whatsapp_Chat_Exporter/ios_handler.py @@ -411,7 +411,8 @@ def calls(db, data, timezone_offset, filter_chat): call.sender = name or fallback call.meta = True call.data = ( - f"A {'video' if content['ZVIDEO'] == 1 else 'voice'} " + f"A {'group ' if content['ZGROUPJIDSTRING'] is not None else ''}" + f"{'video' if content['ZVIDEO'] == 1 else 'voice'} " f"call {'to' if call.from_me else 'from'} " f"{call.sender} was " )