Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/d5bad8c6ef644dae4a188d663653fc4a26f7ad64 You should set ROOT_URL correctly, otherwise the web may not work correctly.

long not int

pull/3113/head
Mark McDowall 12 years ago
parent f95f7c2320
commit d5bad8c6ef

@ -7,14 +7,14 @@ namespace NzbDrone.Core.Notifications.PushBullet
{
public interface IPushBulletProxy
{
void SendNotification(string title, string message, string apiKey, int deviceId);
void SendNotification(string title, string message, string apiKey, long deviceId);
}
public class PushBulletProxy : IPushBulletProxy, IExecute<TestPushBulletCommand>
{
private const string URL = "https://api.pushbullet.com/api/pushes";
public void SendNotification(string title, string message, string apiKey, int deviceId)
public void SendNotification(string title, string message, string apiKey, long deviceId)
{
var client = new RestClient(URL);
var request = new RestRequest(Method.POST);

Loading…
Cancel
Save