mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Adding seasons to series will also unmonitor season 0
This commit is contained in:
parent
feda4a9b67
commit
6057bf187d
2 changed files with 5 additions and 1 deletions
|
@ -43,6 +43,11 @@ namespace NzbDrone.Core.Datastore.Migration
|
||||||
int seasonNumber = seasonReader.GetInt32(0);
|
int seasonNumber = seasonReader.GetInt32(0);
|
||||||
bool monitored = seasonReader.GetBoolean(1);
|
bool monitored = seasonReader.GetBoolean(1);
|
||||||
|
|
||||||
|
if (seasonNumber == 0)
|
||||||
|
{
|
||||||
|
monitored = false;
|
||||||
|
}
|
||||||
|
|
||||||
seasons.Add(new { seasonNumber, monitored });
|
seasons.Add(new { seasonNumber, monitored });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -71,7 +71,6 @@ namespace NzbDrone.Host.Owin
|
||||||
}
|
}
|
||||||
|
|
||||||
throw ex.InnerException;
|
throw ex.InnerException;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue