From 394450758ed822b38a851f8c3ee601c68403e47e Mon Sep 17 00:00:00 2001 From: Gregor Parzefall <82708541+grorp@users.noreply.github.com> Date: Thu, 9 Nov 2023 19:54:47 +0100 Subject: [PATCH] Fix auto_install_spec being used as a table (#13970) (It's a string since #13906.) --- builtin/mainmenu/content/dlg_contentstore.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/builtin/mainmenu/content/dlg_contentstore.lua b/builtin/mainmenu/content/dlg_contentstore.lua index 92ab8319f..fa8f0b85c 100644 --- a/builtin/mainmenu/content/dlg_contentstore.lua +++ b/builtin/mainmenu/content/dlg_contentstore.lua @@ -705,8 +705,7 @@ local function resolve_auto_install_spec() end if not resolved then - gamedata.errormessage = fgettext("The package $1/$2 was not found.", - auto_install_spec.author, auto_install_spec.name) + gamedata.errormessage = fgettext("The package $1 was not found.", auto_install_spec) ui.update() auto_install_spec = nil