Fix broken folderDay

pull/37/head
Varun Patil 2022-09-12 02:35:09 -07:00
parent e3880f078c
commit d977ec7cbe
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ class ApiController extends Controller {
return new JSONResponse([], Http::STATUS_FORBIDDEN);
}
$list = $this->timelineQuery->getDayFolder($node->getId(), intval($dayId));
$list = $this->timelineQuery->getDayFolder($user->getUID(), $node->getId(), intval($dayId));
return new JSONResponse($list, Http::STATUS_OK);
}