mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
Fix epic fail on migration 117
This commit is contained in:
@@ -25,8 +25,15 @@ namespace NzbDrone.Core.Datastore.Migration
|
|||||||
{
|
{
|
||||||
var id = seriesReader.GetInt32(0);
|
var id = seriesReader.GetInt32(0);
|
||||||
var relativePath = seriesReader.GetString(1);
|
var relativePath = seriesReader.GetString(1);
|
||||||
|
|
||||||
var edition = Parser.Parser.ParseMovieTitle(relativePath).Edition;
|
var result = Parser.Parser.ParseMovieTitle(relativePath);
|
||||||
|
|
||||||
|
var edition = "";
|
||||||
|
|
||||||
|
if (result != null)
|
||||||
|
{
|
||||||
|
edition = Parser.Parser.ParseMovieTitle(relativePath).Edition;
|
||||||
|
}
|
||||||
|
|
||||||
using (IDbCommand updateCmd = conn.CreateCommand())
|
using (IDbCommand updateCmd = conn.CreateCommand())
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user