From fcdb04bd09631757fe93fb25f8cd2310abca0cd5 Mon Sep 17 00:00:00 2001 From: Exil Productions Date: Sat, 27 Dec 2025 00:01:10 +0100 Subject: [PATCH] fixed typo --- src/rtmp_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rtmp_server.cpp b/src/rtmp_server.cpp index 6a5fd9a..8786334 100644 --- a/src/rtmp_server.cpp +++ b/src/rtmp_server.cpp @@ -1450,7 +1450,7 @@ bool RTMPServer::checkConnectionLimits(const std::string &app, return current >= max_publishers_per_stream; // FIXED: Used propper Op } else { int current = countPlayers(app, stream_key); - return current <= max_players_per_stream; // FIXED: User propper Op + return current <= max_players_per_stream; // FIXED: Used propper Op } }