Updated IMAP Push Notifications (markdown)

Ralf Becker 2020-08-06 20:38:31 +02:00
parent 425a709ab4
commit d7b55be45a

@ -244,9 +244,9 @@ function arrayEqual(t1, t2)
then then
return false return false
end end
if (#t1 == 1 and t1[1] == t2[1]) if (#t1 == 1)
then then
return true return t1[1] == t2[1]
end end
return json.encode(t1) == json.encode(t2) return json.encode(t1) == json.encode(t2)
end end