Initial support for streamed stories.

This commit is contained in:
John Preston
2025-10-13 22:49:10 +04:00
parent 18438b17a5
commit c11cab858d
30 changed files with 597 additions and 92 deletions

View File

@@ -981,11 +981,18 @@ void SessionNavigation::resolveConferenceCall(
if (call->fullCount() >= conferenceLimit) {
showToast(tr::lng_confcall_participants_limit(tr::now));
} else {
Core::App().calls().startOrJoinConferenceCall({
.call = call,
.linkSlug = slug,
.joinMessageId = inviteMsgId,
});
parentController()->window().openInMediaView(
Media::View::OpenRequest(
parentController(),
call,
slug,
inviteMsgId));
AssertIsDebug();
//Core::App().calls().startOrJoinConferenceCall({
// .call = call,
// .linkSlug = slug,
// .joinMessageId = inviteMsgId,
//});
close();
}
};