| 1264 | } |
| 1265 | |
| 1266 | void Session::registerGroupCall(not_null<GroupCall*> call) { |
| 1267 | _groupCalls.emplace(call->id(), call); |
| 1268 | } |
| 1269 | |
| 1270 | void Session::unregisterGroupCall(not_null<GroupCall*> call) { |
| 1271 | _groupCalls.remove(call->id()); |
no test coverage detected