mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 14:55:20 -07:00
Maybe fix PTP? Don't have an account, so cannot test.
We should realy add some ptp tests.
This commit is contained in:
parent
421a191650
commit
1ccfde334f
1 changed files with 24 additions and 14 deletions
|
@ -66,6 +66,16 @@ namespace NzbDrone.Core.Indexers.PassThePopcorn
|
||||||
title = $"{title} ✔";
|
title = $"{title} ✔";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var imdbId = 0;
|
||||||
|
|
||||||
|
int.TryParse(result.ImdbId, out imdbId);
|
||||||
|
|
||||||
|
if (imdbId == 0 && result.ImdbId.Substring(0, 2) == "tt")
|
||||||
|
{
|
||||||
|
int.TryParse(result.ImdbId.Substring(2), out imdbId);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Only add approved torrents
|
// Only add approved torrents
|
||||||
if (_settings.RequireApproved && torrent.Checked)
|
if (_settings.RequireApproved && torrent.Checked)
|
||||||
{
|
{
|
||||||
|
@ -82,7 +92,7 @@ namespace NzbDrone.Core.Indexers.PassThePopcorn
|
||||||
Golden = torrent.GoldenPopcorn,
|
Golden = torrent.GoldenPopcorn,
|
||||||
Scene = torrent.Scene,
|
Scene = torrent.Scene,
|
||||||
Approved = torrent.Checked,
|
Approved = torrent.Checked,
|
||||||
ImdbId = int.Parse(result.ImdbId)
|
ImdbId = imdbId
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
// Add all torrents
|
// Add all torrents
|
||||||
|
@ -101,7 +111,7 @@ namespace NzbDrone.Core.Indexers.PassThePopcorn
|
||||||
Golden = torrent.GoldenPopcorn,
|
Golden = torrent.GoldenPopcorn,
|
||||||
Scene = torrent.Scene,
|
Scene = torrent.Scene,
|
||||||
Approved = torrent.Checked,
|
Approved = torrent.Checked,
|
||||||
ImdbId = int.Parse(result.ImdbId)
|
ImdbId = imdbId
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
// Don't add any torrents
|
// Don't add any torrents
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue