diff --git a/rtclib b/rtclib index d477146..4cf345f 160000 --- a/rtclib +++ b/rtclib @@ -1 +1 @@ -Subproject commit d4771462dbe5fe11fe53a19eb43f8cfeb7bd110c +Subproject commit 4cf345fc30e058d85ab0bde105f451d05bf90dd7 diff --git a/server/src/channel/ClientChannelView.cpp b/server/src/channel/ClientChannelView.cpp index e331cbf..15eb0a1 100644 --- a/server/src/channel/ClientChannelView.cpp +++ b/server/src/channel/ClientChannelView.cpp @@ -172,7 +172,7 @@ std::deque> ClientChannelView::insert_channels(shared continue; }; auto now_prv = this->find_channel(entry->previousChannelId()); - debugMessage(this->getServerId(), "{}[CHANNELS] Insert channel {} ({}) after {} ({}). Original view prv: {} ({}). Original prv: {} ({})", + logTrace(this->getServerId(), "{}[CHANNELS] Insert channel {} ({}) after {} ({}). Original view prv: {} ({}). Original prv: {} ({})", CLIENT_STR_LOG_PREFIX_(this->owner), channel->channelId(), channel->name(), entry->previousChannelId(), now_prv ? now_prv->channel()->name() : "", @@ -225,7 +225,7 @@ std::deque> ClientChannelView::show_channel(std::shar remote_previous = remote_previous->previous; } auto previous_channel = previous ? previous->channel() : nullptr; //weak could be may nullptr - debugMessage(this->getServerId(), "{}[CHANNELS] Insert channel {} ({}) after {} ({})", + logTrace(this->getServerId(), "{}[CHANNELS] Insert channel {} ({}) after {} ({})", CLIENT_STR_LOG_PREFIX_(this->owner), channel->channelId(), channel->name(), previous ? previous->channelId() : 0, previous_channel ? previous_channel->name() : "" diff --git a/server/src/client/web/WebClient.cpp b/server/src/client/web/WebClient.cpp index f44530c..5e1b2fd 100644 --- a/server/src/client/web/WebClient.cpp +++ b/server/src/client/web/WebClient.cpp @@ -535,7 +535,7 @@ command_result WebClient::handleCommandWhisperSessionInitialize(Command &command return command_result{error::server_unbound}; } - auto stream_id = command["stream_id"].as(); + auto stream_id = command["ssrc"].as(); if(command.hasParm("new")) { auto type = command["type"].as(); auto target = command["target"].as();