Merge 0.12->trunk
authorKim Alvefur <zash@zash.se>
Sun, 15 May 2022 23:22:33 +0200
changeset 12510 d04f6f014636
parent 12508 c589874fe348 (current diff)
parent 12509 604bb5b8362d (diff)
child 12512 e6cfd0a6f0da
Merge 0.12->trunk
plugins/mod_admin_shell.lua
--- a/plugins/mod_admin_shell.lua	Sun May 15 16:12:34 2022 +0200
+++ b/plugins/mod_admin_shell.lua	Sun May 15 23:22:33 2022 +0200
@@ -50,12 +50,12 @@
 end
 
 local function pre(prefix, str, alt)
-	if (str or "") == "" then return alt or ""; end
+	if type(str) ~= "string" or str == "" then return alt or ""; end
 	return prefix .. str;
 end
 
 local function suf(str, suffix, alt)
-	if (str or "") == "" then return alt or ""; end
+	if type(str) ~= "string" or str == "" then return alt or ""; end
 	return str .. suffix;
 end