From 9dd14b73a921a60551db8444611dfddd8cfc64b1 Mon Sep 17 00:00:00 2001 From: Markus Kuuse Date: Sat, 14 Dec 2024 14:36:48 +0200 Subject: [PATCH] missing return statement --- src/plex.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plex.go b/src/plex.go index a36b305..b396347 100644 --- a/src/plex.go +++ b/src/plex.go @@ -161,6 +161,7 @@ func (cfg *Config) getPlexLibrary() { for _, library := range libraries.MediaContainer.Library { if cfg.Plex.LibraryName == library.Title { cfg.Plex.LibraryID = library.Key + return } } debug.Debug(fmt.Sprintf("full libary output: %v", libraries))