Fixed: Twitter Connect missing (you'll have to readd it in Connect)
This commit is contained in:
parent
5db9f7aa0e
commit
ce5f9e8930
|
@ -1,6 +1,6 @@
|
||||||
namespace NzbDrone.Core.Download.Clients.Deluge
|
namespace NzbDrone.Core.Download.Clients.Deluge
|
||||||
{
|
{
|
||||||
class DelugeTorrentStatus
|
public class DelugeTorrentStatus
|
||||||
{
|
{
|
||||||
public const string Paused = "Paused";
|
public const string Paused = "Paused";
|
||||||
public const string Queued = "Queued";
|
public const string Queued = "Queued";
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace NzbDrone.Core.Download.Clients.NzbVortex
|
namespace NzbDrone.Core.Download.Clients.NzbVortex
|
||||||
{
|
{
|
||||||
class NzbVortexAuthenticationException : DownloadClientException
|
public class NzbVortexAuthenticationException : DownloadClientException
|
||||||
{
|
{
|
||||||
public NzbVortexAuthenticationException(string message, params object[] args) : base(message, args)
|
public NzbVortexAuthenticationException(string message, params object[] args) : base(message, args)
|
||||||
{
|
{
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace NzbDrone.Core.Download.Clients.NzbVortex
|
namespace NzbDrone.Core.Download.Clients.NzbVortex
|
||||||
{
|
{
|
||||||
class NzbVortexNotLoggedInException : DownloadClientException
|
public class NzbVortexNotLoggedInException : DownloadClientException
|
||||||
{
|
{
|
||||||
public NzbVortexNotLoggedInException() : this("Authentication is required")
|
public NzbVortexNotLoggedInException() : this("Authentication is required")
|
||||||
{
|
{
|
||||||
|
|
|
@ -39,7 +39,7 @@ namespace NzbDrone.Core.Download.Clients.UTorrent
|
||||||
public object Unknown28 { get; set; }
|
public object Unknown28 { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
class UTorrentTorrentJsonConverter : JsonConverter
|
public class UTorrentTorrentJsonConverter : JsonConverter
|
||||||
{
|
{
|
||||||
public override bool CanConvert(Type objectType)
|
public override bool CanConvert(Type objectType)
|
||||||
{
|
{
|
||||||
|
|
|
@ -3,7 +3,7 @@ using NzbDrone.Common.Exceptions;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Notifications.Discord
|
namespace NzbDrone.Core.Notifications.Discord
|
||||||
{
|
{
|
||||||
class DiscordException : NzbDroneException
|
public class DiscordException : NzbDroneException
|
||||||
{
|
{
|
||||||
public DiscordException(string message) : base(message)
|
public DiscordException(string message) : base(message)
|
||||||
{
|
{
|
||||||
|
|
|
@ -3,7 +3,7 @@ using NzbDrone.Common.Exceptions;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Notifications.Slack
|
namespace NzbDrone.Core.Notifications.Slack
|
||||||
{
|
{
|
||||||
class SlackExeption : NzbDroneException
|
public class SlackExeption : NzbDroneException
|
||||||
{
|
{
|
||||||
public SlackExeption(string message) : base(message)
|
public SlackExeption(string message) : base(message)
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,7 +6,7 @@ using NzbDrone.Core.Validation;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Notifications.Twitter
|
namespace NzbDrone.Core.Notifications.Twitter
|
||||||
{
|
{
|
||||||
class Twitter : NotificationBase<TwitterSettings>
|
public class Twitter : NotificationBase<TwitterSettings>
|
||||||
{
|
{
|
||||||
|
|
||||||
private readonly ITwitterService _twitterService;
|
private readonly ITwitterService _twitterService;
|
||||||
|
|
Loading…
Reference in New Issue