Fix Tags not being saved

This commit is contained in:
Neshura 2025-02-18 23:18:03 +01:00
parent 09866ca4dd
commit 903f7142ce
Signed by: Neshura
GPG key ID: 4E2D47B1374C297D

View file

@ -379,10 +379,11 @@ func (jncApi *Api) FetchLibrarySeries() error {
return err return err
} }
err = json.Unmarshal(body, &serie) err = json.Unmarshal(body, &serie.Info)
if err != nil { if err != nil {
jncApi._series[i] = serie return err
} }
jncApi._series[i] = serie
progress++ progress++
} }