Prevent keepalive on non-initialized userClients when negotiating.
This commit is contained in:
parent
27240abd06
commit
a1a195b1e7
1 changed files with 3 additions and 1 deletions
|
@ -427,7 +427,9 @@ namespace Mist {
|
||||||
if (!tid) {
|
if (!tid) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (userClient.getData()){
|
||||||
userClient.keepAlive();
|
userClient.keepAlive();
|
||||||
|
}
|
||||||
if (trackMap.count(tid) && !trackState.count(tid)) {
|
if (trackMap.count(tid) && !trackState.count(tid)) {
|
||||||
//If the trackmap has been set manually, don't negotiate
|
//If the trackmap has been set manually, don't negotiate
|
||||||
HIGH_MSG("TrackMap manual, not negotiating track IDs");
|
HIGH_MSG("TrackMap manual, not negotiating track IDs");
|
||||||
|
|
Loading…
Add table
Reference in a new issue