From 7ffc5ae9f5db875b2f6bd4d925b6561cadbab30a Mon Sep 17 00:00:00 2001 From: ezdev128 Date: Mon, 22 Feb 2021 21:25:42 +0300 Subject: [PATCH] Added session information according to rfc4566 --- tgcalls/group/GroupInstanceImpl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tgcalls/group/GroupInstanceImpl.cpp b/tgcalls/group/GroupInstanceImpl.cpp index 0d9559ff..55b6ffaf 100644 --- a/tgcalls/group/GroupInstanceImpl.cpp +++ b/tgcalls/group/GroupInstanceImpl.cpp @@ -171,6 +171,7 @@ static std::string createSdp(uint32_t sessionId, GroupJoinResponsePayload const appendSdp(sdp, sessionIdString.str()); appendSdp(sdp, "s=-"); + appendSdp(sdp, "i=Telegram session"); appendSdp(sdp, "t=0 0"); std::ostringstream bundleString;