diff options
Diffstat (limited to 'app/Controller/Task.php')
-rw-r--r-- | app/Controller/Task.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Task.php b/app/Controller/Task.php index 4c15d8df..1b20cf15 100644 --- a/app/Controller/Task.php +++ b/app/Controller/Task.php @@ -26,7 +26,7 @@ class Task extends Base $this->forbidden(true); } - $task = $this->task->getDetails($this->request->getIntegerParam('task_id')); + $task = $this->taskFinder->getDetails($this->request->getIntegerParam('task_id')); if (! $task) { $this->notfound(true); |