Fixed: Twitter Connect missing (you'll have to readd it in Connect)

This commit is contained in:
Taloth Saldono 2020-06-17 10:42:55 +02:00
parent 5db9f7aa0e
commit ce5f9e8930
7 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
namespace NzbDrone.Core.Download.Clients.Deluge
{
class DelugeTorrentStatus
public class DelugeTorrentStatus
{
public const string Paused = "Paused";
public const string Queued = "Queued";

View File

@ -2,7 +2,7 @@
namespace NzbDrone.Core.Download.Clients.NzbVortex
{
class NzbVortexAuthenticationException : DownloadClientException
public class NzbVortexAuthenticationException : DownloadClientException
{
public NzbVortexAuthenticationException(string message, params object[] args) : base(message, args)
{

View File

@ -2,7 +2,7 @@
namespace NzbDrone.Core.Download.Clients.NzbVortex
{
class NzbVortexNotLoggedInException : DownloadClientException
public class NzbVortexNotLoggedInException : DownloadClientException
{
public NzbVortexNotLoggedInException() : this("Authentication is required")
{

View File

@ -39,7 +39,7 @@ namespace NzbDrone.Core.Download.Clients.UTorrent
public object Unknown28 { get; set; }
}
class UTorrentTorrentJsonConverter : JsonConverter
public class UTorrentTorrentJsonConverter : JsonConverter
{
public override bool CanConvert(Type objectType)
{

View File

@ -3,7 +3,7 @@ using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Notifications.Discord
{
class DiscordException : NzbDroneException
public class DiscordException : NzbDroneException
{
public DiscordException(string message) : base(message)
{

View File

@ -3,7 +3,7 @@ using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Notifications.Slack
{
class SlackExeption : NzbDroneException
public class SlackExeption : NzbDroneException
{
public SlackExeption(string message) : base(message)
{

View File

@ -6,7 +6,7 @@ using NzbDrone.Core.Validation;
namespace NzbDrone.Core.Notifications.Twitter
{
class Twitter : NotificationBase<TwitterSettings>
public class Twitter : NotificationBase<TwitterSettings>
{
private readonly ITwitterService _twitterService;