From 200a43fad309813c3ebbc3da35dbb97367bde7ac Mon Sep 17 00:00:00 2001 From: jacqueline Date: Thu, 18 Jan 2024 14:49:07 +1100 Subject: fix issues with some song info not appearing --- src/lua/property.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lua') diff --git a/src/lua/property.cpp b/src/lua/property.cpp index c16434fa..33600ee8 100644 --- a/src/lua/property.cpp +++ b/src/lua/property.cpp @@ -183,7 +183,7 @@ static auto pushTagValue(lua_State* L, const database::TagValue& val) -> void { for (const auto& i : arg) { lua_pushlstring(L, i.data(), i.size()); lua_pushboolean(L, true); - lua_rawset(L, -2); + lua_rawset(L, -3); } } else if constexpr (std::is_same_v) { lua_pushinteger(L, arg); -- cgit v1.2.3