Remove redundant warning log

The warning log in publishFrame was being printed
unconditionally due to the absence of a return
statement after a successful frame publish.

Change-Id: I552276e37071cb24a7b16b4b8ae441ebd26379b6
This commit is contained in:
pknellore
2025-06-16 10:49:29 -04:00
committed by Adrien Béraud
parent eb9bec5d23
commit 001b13103b

View File

@ -371,7 +371,6 @@ publishFrame(std::string_view id)
if (auto vm = jami::Manager::instance().getVideoManager())
if (auto input = vm->getVideoInput(id))
input->publishFrame();
JAMI_WARNING("publishFrame: Unable to find input {}", id);
}
void