diff --git a/src/gui/lua/lua_misc.cpp b/src/gui/lua/lua_misc.cpp index 2c173fe0f..65c03b435 100644 --- a/src/gui/lua/lua_misc.cpp +++ b/src/gui/lua/lua_misc.cpp @@ -281,6 +281,10 @@ int CLuaInstMisc::GetRevision(lua_State *L) std::string hw = ""; #if HAVE_COOL_HARDWARE hw = "Coolstream"; +#else + hw = g_info.hw_caps->boxvendor; + hw += "_"; + hw += g_info.hw_caps->boxname; #endif rev = cs_get_revision(); lua_pushinteger(L, rev);