From 4acfe5ab74ce777b0f09fe5964f113666ac1f4f1 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sun, 28 Aug 2016 08:36:42 +0200 Subject: Fix #24 --- lib/Controller/ItemApiController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/Controller/ItemApiController.php b/lib/Controller/ItemApiController.php index 43ff842b8..98342cd26 100644 --- a/lib/Controller/ItemApiController.php +++ b/lib/Controller/ItemApiController.php @@ -74,8 +74,10 @@ class ItemApiController extends ApiController { * @return array|mixed */ public function updated($type=3, $id=0, $lastModified=0) { + // needs to be turned into a millisecond timestamp to work properly + $paddedLastModified = $lastModified . '000000'; return $this->serializer->serialize( - $this->itemService->findAllNew($id, $type, $lastModified, + $this->itemService->findAllNew($id, $type, $paddedLastModified, true, $this->userId) ); } -- cgit v1.2.3