feat: sync group call livestream support

This commit is contained in:
A 2026-07-06 14:31:19 +08:00
parent 56d995474c
commit f1a27996d3
37 changed files with 2219 additions and 83 deletions

View file

@ -258,6 +258,11 @@ func tgChannelMessageAction(action domain.ChannelMessageAction) tg.MessageAction
out.SetDuration(action.CallDuration)
}
return out
case domain.ChannelActionGroupCallScheduled:
return &tg.MessageActionGroupCallScheduled{
Call: &tg.InputGroupCall{ID: action.CallID, AccessHash: action.CallAccessHash},
ScheduleDate: action.CallScheduleDate,
}
case domain.ChannelActionInviteToGroupCall:
return &tg.MessageActionInviteToGroupCall{
Call: &tg.InputGroupCall{ID: action.CallID, AccessHash: action.CallAccessHash},