Skip to content
Snippets Groups Projects
Unverified Commit f9c26375 authored by Kevin Aleman's avatar Kevin Aleman Committed by GitHub
Browse files

regression: `$group` by `alias + type` instead of full `$source` object on reports page (#30391)

parent 415ae0e0
No related branches found
No related tags found
No related merge requests found
......@@ -357,7 +357,10 @@ export class LivechatRoomsRawEE extends LivechatRoomsRaw implements ILivechatRoo
},
{
$group: {
_id: '$source',
_id: {
type: '$source.type',
alias: '$source.alias',
},
value: { $sum: 1 },
},
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment