Update recipe controller to use parameter correctly

Signed-off-by: Christian Wolf <github@christianwolf.email>
This commit is contained in:
Christian Wolf 2021-09-10 20:14:52 +02:00
Родитель 73dd58a104
Коммит 94c1ac72ee
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9FC3120E932F73F1
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -94,6 +94,7 @@ class RecipeController extends Controller {
* @param $id
*
* @return DataResponse
* @todo Parameter id is never used. Fix that
*/
public function update($id) {
$this->dbCacheService->triggerCheck();
@ -145,7 +146,7 @@ class RecipeController extends Controller {
try {
$this->service->deleteRecipe($id);
return new DataResponse('Recipe ' . $_GET['id'] . ' deleted successfully', Http::STATUS_OK);
return new DataResponse('Recipe ' . $id . ' deleted successfully', Http::STATUS_OK);
} catch (\Exception $e) {
return new DataResponse($e->getMessage(), 502);
}