From c1492cd39ac8847379cf4f690eaa41621ea71f81 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Mon, 4 Jul 2016 03:16:46 +0300 Subject: [PATCH] Add missing string format parameter when loggign property changes --- matrix/client.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/client.lua b/matrix/client.lua index af82422..afc1e80 100644 --- a/matrix/client.lua +++ b/matrix/client.lua @@ -63,7 +63,7 @@ local function set_string_list_property(self, name, new_value) table.sort(old_value) table.sort(new_value) if sorted_string_list_eq(old_value, new_value) then - self:_log(".%s: [%s] (unachanged)", table.concat(old_value, ", ")) + self:_log(".%s: [%s] (unchanged)", name, table.concat(old_value, ", ")) return false else self[name] = new_value