plugins/mod_version.lua
changeset 13478 05c1098084cd
parent 12981 74b9e05af71e
child 13480 b9267ce1b183
--- a/plugins/mod_version.lua	Wed Apr 03 21:56:03 2024 -0700
+++ b/plugins/mod_version.lua	Sat Apr 06 14:31:28 2024 +0200
@@ -22,7 +22,12 @@
 		local os_version_command = module:get_option_string("os_version_command");
 		local ok, pposix = pcall(require, "prosody.util.pposix");
 		if not os_version_command and (ok and pposix and pposix.uname) then
-			platform = pposix.uname().sysname;
+			local ok, uname = pposix.uname();
+			if not ok then
+				module:log("debug", "Could not retrieve OS name: %s", uname);
+			else
+				platform = uname.sysname;
+			end
 		end
 		if not platform then
 			local uname = io.popen(os_version_command or "uname");