From 9a07eb649a021681acde29018307f03de5c08f8f Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Sat, 9 Sep 2023 10:13:35 -0400 Subject: [PATCH] 1.3 - remove plex notification --- lidarr/BeetsTagger.bash | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/lidarr/BeetsTagger.bash b/lidarr/BeetsTagger.bash index 0dffaef..7bec56e 100644 --- a/lidarr/BeetsTagger.bash +++ b/lidarr/BeetsTagger.bash @@ -1,5 +1,5 @@ #!/usr/bin/env bash -scriptVersion="1.2" +scriptVersion="1.3" scriptName="BeetsTagger" #### Import Settings @@ -122,16 +122,6 @@ ProcessWithBeets () { duration=$SECONDS log "$1 :: Finished in $(($duration / 60 )) minutes and $(($duration % 60 )) seconds!" - NotifyPlex "$getAlbumArtist" "$getAlbumArtistPath" -} - -NotifyPlex () { - # Process item with PlexNotify.bash if plexToken is configured - if [ ! -z "$plexToken" ]; then - # update plex - log "$1 :: Using PlexNotify.bash to update Plex...." - bash /config/extended/PlexNotify.bash "$2" - fi } ProcessWithBeets "$getFolderPath"