| 1268 | } |
| 1269 | |
| 1270 | void Session::unregisterGroupCall(not_null<GroupCall*> call) { |
| 1271 | _groupCalls.remove(call->id()); |
| 1272 | } |
| 1273 | |
| 1274 | GroupCall *Session::groupCall(CallId callId) const { |
| 1275 | const auto i = _groupCalls.find(callId); |
no test coverage detected