From b861b37dbb010cf9d7025bdc5dfea61a1d19871b Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Mon, 4 Jul 2016 03:16:10 +0300 Subject: [PATCH] Fix typo "ince" -> "since" in api:sync() --- matrix/api.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/api.lua b/matrix/api.lua index 5e2d45a..164f2ee 100644 --- a/matrix/api.lua +++ b/matrix/api.lua @@ -86,7 +86,7 @@ function API:sync(options) if options then params = { filter = options.filter, - ince = options.since, + since = options.since, full_state = options.full or false, set_presence = online and nil or "offline", timeout = options.timeout,