mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Cast issue with Cardigann for query with tmdbid
This commit is contained in:
@@ -529,7 +529,8 @@ namespace NzbDrone.Core.Indexers.Cardigann
|
|||||||
var all = variablesRegExMatches.Groups[0].Value;
|
var all = variablesRegExMatches.Groups[0].Value;
|
||||||
var variable = variablesRegExMatches.Groups[1].Value;
|
var variable = variablesRegExMatches.Groups[1].Value;
|
||||||
|
|
||||||
var value = (string)variables[variable];
|
//We store tmdbid and others as int32, thus conversion with .tostring is needed
|
||||||
|
var value = variables[variable]?.ToString() ?? null;
|
||||||
if (modifier != null)
|
if (modifier != null)
|
||||||
{
|
{
|
||||||
value = modifier(value);
|
value = modifier(value);
|
||||||
|
Reference in New Issue
Block a user