Update sms-new.lua

This commit is contained in:
Ale32bit 2015-09-26 21:31:29 +02:00
parent 642915a2fc
commit ee4a968543

View file

@ -146,7 +146,7 @@ local function recMsg()
t = textutils.unserialize(v) t = textutils.unserialize(v)
if t then if t then
date = t["date"] date = t["date"]
mesg = "<"..t["from"].."> "..t["message"] mesg = "<"..t["from"].."> "..base64.decode(t["message"])
printMsg(mesg) printMsg(mesg)
end end
end end