mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
New: Added support for Gotify notifications (#3474)
* Added support for Gotify notifications * Use string interpolation to build url * Adapt changes by markus101 over at Sonarr * Remove blank line Fixes #3472
This commit is contained in:
committed by
Leonardo Galli
parent
f8c009a348
commit
9985554dcb
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace NzbDrone.Core.Notifications.Gotify
|
||||
{
|
||||
public class InvalidResponseException : Exception
|
||||
{
|
||||
public InvalidResponseException()
|
||||
{
|
||||
}
|
||||
|
||||
public InvalidResponseException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user