From 903f7142ce5293d3779a5ec17484f1bf22c7b566 Mon Sep 17 00:00:00 2001
From: Neshura <neshura@neshweb.net>
Date: Tue, 18 Feb 2025 23:18:03 +0100
Subject: [PATCH] Fix Tags not being saved

---
 jnc/jnc.go | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/jnc/jnc.go b/jnc/jnc.go
index ce04c77..911772e 100644
--- a/jnc/jnc.go
+++ b/jnc/jnc.go
@@ -379,10 +379,11 @@ func (jncApi *Api) FetchLibrarySeries() error {
 			return err
 		}
 
-		err = json.Unmarshal(body, &serie)
+		err = json.Unmarshal(body, &serie.Info)
 		if err != nil {
-			jncApi._series[i] = serie
+			return err
 		}
+		jncApi._series[i] = serie
 
 		progress++
 	}