diff --git a/src/Entity/Note.php b/src/Entity/Note.php
index 0148d58..9068c64 100644
--- a/src/Entity/Note.php
+++ b/src/Entity/Note.php
@@ -167,14 +167,14 @@ class Note implements JsonSerializable
public function toLink(): string
{
- return "id}')\">".
+ return "id}')\">".
$this->title.
" ".
- "id}', this)\">".
+ "id}', this)\">".
"".
"".
(
- $this->recording ? "
".
+ $this->recording ?
"".
"".
"" : null
@@ -195,6 +195,7 @@ class Note implements JsonSerializable
{
return [
'id' => $this->getId(),
+ 'recording' => $this->getRecording(),
'link' => $this->toLink(),
'title' => $this->getTitle(),
'date' => $this->getDate(),