From 7a27e424f39d7a721e27c61802f6a8da564d7ab5 Mon Sep 17 00:00:00 2001 From: Alex Goretoy <113054034+9x3l6@users.noreply.github.com> Date: Sun, 17 Dec 2023 07:28:27 -0600 Subject: [PATCH] Fix Video getGenre and getAlbumArtist wrong data --- src/Entity/Video.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Entity/Video.php b/src/Entity/Video.php index 12821f2..9e685ac 100644 --- a/src/Entity/Video.php +++ b/src/Entity/Video.php @@ -374,7 +374,7 @@ public function getArtist(): ?string public function getGenre(): ?string { - return $this->get('track'); + return $this->get('genre'); } public function getAlbum(): ?string @@ -389,7 +389,7 @@ public function getAlbumType(): ?string public function getAlbumArtist(): ?string { - return $this->get('track'); + return $this->get('album_artist'); } public function getDiscNumber(): ?int