New: Add Subsonic library update and notify (#368)

* New: Add Subsonic library update and notify

* New: Subsonic setting for to allow connection via SSL
This commit is contained in:
Qstick
2018-05-26 19:40:18 -04:00
committed by GitHub
parent 598e3eb23b
commit 3344810653
7 changed files with 386 additions and 0 deletions
@@ -0,0 +1,15 @@
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Notifications.Subsonic
{
public class SubsonicException : NzbDroneException
{
public SubsonicException(string message) : base(message)
{
}
public SubsonicException(string message, params object[] args) : base(message, args)
{
}
}
}