From e345c4cc9e1124398477336569db76b7f17240f2 Mon Sep 17 00:00:00 2001 From: Philipp Rintz <13933258+p-rintz@users.noreply.github.com> Date: Wed, 15 Feb 2023 00:00:34 +0100 Subject: [PATCH] Correct the libraryTags variable --- server/managers/NotificationManager.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/managers/NotificationManager.js b/server/managers/NotificationManager.js index 943c66ea..dacf0bdb 100644 --- a/server/managers/NotificationManager.js +++ b/server/managers/NotificationManager.js @@ -24,7 +24,7 @@ class NotificationManager { libraryItemId: libraryItem.id, libraryId: libraryItem.libraryId, libraryName: library ? library.name : 'Unknown', - libraryTags: libraryItem.tags, + libraryTags: libraryItem.media.tags, podcastTitle: libraryItem.media.metadata.title, episodeId: episode.id, episodeTitle: episode.title @@ -111,4 +111,4 @@ class NotificationManager { }) } } -module.exports = NotificationManager \ No newline at end of file +module.exports = NotificationManager