fixed typo

This commit is contained in:
Exil Productions
2025-12-27 00:01:10 +01:00
parent 1ad0bccb2b
commit fcdb04bd09

View File

@@ -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
}
}