diff --git a/NzbDrone.Web/Controllers/SettingsController.cs b/NzbDrone.Web/Controllers/SettingsController.cs
index ab0f57135..99bf5e183 100644
--- a/NzbDrone.Web/Controllers/SettingsController.cs
+++ b/NzbDrone.Web/Controllers/SettingsController.cs
@@ -73,6 +73,9 @@ namespace NzbDrone.Web.Controllers
NewzbinUsername = _configProvider.NewzbinUsername,
NewzbinPassword = _configProvider.NewzbinPassword,
+ FileSharingTalkUid = _configProvider.FileSharingTalkUid,
+ FileSharingTalkSecret = _configProvider.FileSharingTalkSecret,
+
NzbsOrgEnabled = _indexerProvider.GetSettings(typeof(NzbsOrg)).Enable,
NzbMatrixEnabled = _indexerProvider.GetSettings(typeof(NzbMatrix)).Enable,
NzbsRUsEnabled = _indexerProvider.GetSettings(typeof(NzbsRUs)).Enable,
diff --git a/NzbDrone.Web/Views/Settings/Indexers.cshtml b/NzbDrone.Web/Views/Settings/Indexers.cshtml
index c3d490881..61be0559d 100644
--- a/NzbDrone.Web/Views/Settings/Indexers.cshtml
+++ b/NzbDrone.Web/Views/Settings/Indexers.cshtml
@@ -155,7 +155,7 @@
@Html.DescriptionFor(m => m.FileSharingTalkSecret)
@Html.ValidationMessageFor(m => m.FileSharingTalkSecret)
- @Html.TextBoxFor(m => m.FileSharingTalkSecret, new { @class = "inputClass", type = "password" })
+ @Html.TextBoxFor(m => m.FileSharingTalkSecret, new { @class = "inputClass" })
@@ -254,7 +254,7 @@
$('#WomblesEnabled').prop('checked', checked);
if (id == 'fileSharingTalkStatus')
- $('#FileSharingTalk').prop('checked', checked);
+ $('#FileSharingTalkEnabled').prop('checked', checked);
reValidate();
});