There is an error in the AlbumRestController.php in the update() function. It should not return a JsonModel but only the result of the get() because get() already returns a JsonModel.
public function update($id, $data)
{
// code here
return $this->get($id);
}
instead of
public function update($id, $data)
{
// code here
return new JsonModel(array(
'data' => $this->get($id),
));
}
There is an error in the AlbumRestController.php in the update() function. It should not return a JsonModel but only the result of the get() because get() already returns a JsonModel.
instead of