summaryrefslogtreecommitdiffstats
path: root/controller/itemapicontroller.php
diff options
context:
space:
mode:
Diffstat (limited to 'controller/itemapicontroller.php')
-rw-r--r--controller/itemapicontroller.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/controller/itemapicontroller.php b/controller/itemapicontroller.php
index 3674d644c..187a2b6b1 100644
--- a/controller/itemapicontroller.php
+++ b/controller/itemapicontroller.php
@@ -120,7 +120,9 @@ class ItemApiController extends ApiController {
private function setStarred($isStarred, $feedId, $guidHash) {
try {
- $this->itemService->star($feedId, $guidHash, $isStarred, $this->userId);
+ $this->itemService->star(
+ $feedId, $guidHash, $isStarred, $this->userId
+ );
} catch(ServiceNotFoundException $ex){
return $this->error($ex, Http::STATUS_NOT_FOUND);
}