0
1
mirror of https://github.com/radio95-rnt/rds95.git synced 2026-02-26 20:33:53 +01:00
This commit is contained in:
2025-12-27 11:46:42 +01:00
parent b900cf0af3
commit e7e70cb9ea

View File

@@ -554,7 +554,7 @@ int lua_group(RDSGroup* group, const char grp) {
lua_getglobal(L, "group");
if (lua_isfunction(L, -1)) {
lua_pushstring(L, &grp);
lua_pushlstring(L, &grp, 1);
if (lua_pcall(L, 1, 4, 0) == LUA_OK) {
if (!lua_isboolean(L, -1)) {
pthread_mutex_unlock(&lua_mutex);