From f2218006a10569df23379f73790c10a4c87ee967 Mon Sep 17 00:00:00 2001 From: Mathew Giljum Date: Sat, 11 Mar 2017 08:52:34 -0500 Subject: [PATCH] Add helptext for Jackett API key (#1121) --- .../Indexers/TorrentPotato/TorrentPotatoSettings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Indexers/TorrentPotato/TorrentPotatoSettings.cs b/src/NzbDrone.Core/Indexers/TorrentPotato/TorrentPotatoSettings.cs index 14c91e2d0..96f29aad0 100644 --- a/src/NzbDrone.Core/Indexers/TorrentPotato/TorrentPotatoSettings.cs +++ b/src/NzbDrone.Core/Indexers/TorrentPotato/TorrentPotatoSettings.cs @@ -28,11 +28,11 @@ namespace NzbDrone.Core.Indexers.TorrentPotato [FieldDefinition(1, Label = "Username", HelpText = "The username you use at your indexer.")] public string User { get; set; } - [FieldDefinition(2, Label = "Passkey", HelpText = "The password you use at your Indexer,")] + [FieldDefinition(2, Label = "Passkey", HelpText = "The password you use at your Indexer (or your API key if you're using Jackett).")] public string Passkey { get; set; } public NzbDroneValidationResult Validate() { return new NzbDroneValidationResult(Validator.Validate(this)); } } -} \ No newline at end of file +}