# HG changeset patch # User Kim Alvefur # Date 1415628777 -3600 # Node ID 711fabfe6604828c7cc2ca7bf7d2bba206150e04 # Parent c357039c1ab1a2af9ecf82c5b6b2a2b408f9a2e6 mod_storage_muc_log: Fix typo diff -r c357039c1ab1 -r 711fabfe6604 mod_storage_muc_log/mod_storage_muc_log.lua --- a/mod_storage_muc_log/mod_storage_muc_log.lua Mon Nov 10 14:51:36 2014 +0100 +++ b/mod_storage_muc_log/mod_storage_muc_log.lua Mon Nov 10 15:12:57 2014 +0100 @@ -25,7 +25,7 @@ if am == pm then module:log("warn", "Timestamps in AM and PM are identical in your locale, expect timestamps to be wrong"); end - if os_date("!%X", os.time(t)) ~= os_date(timef, os_date(t)) then + if os_date("!%X", os.time(t)) ~= os_date(timef, os.time(t)) then module:log("warn", "Timestamp format differ from what mod_muc_log used, this module may not work correctly"); end end