1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-04 10:02:40 +01:00

Fixed: Typo in ReleasePushModule.cs

This commit is contained in:
Qstick 2020-03-20 22:19:25 -04:00
parent 755fa9e865
commit 669e46266a

View File

@ -85,7 +85,7 @@ private void ResolveIndexer(ReleaseInfo release)
} }
catch (ModelNotFoundException) catch (ModelNotFoundException)
{ {
_logger.Debug("Push Release {0} not associated with known indexer {0}.", release.Title, release.IndexerId); _logger.Debug("Push Release {0} not associated with known indexer {1}.", release.Title, release.IndexerId);
release.IndexerId = 0; release.IndexerId = 0;
} }
} }