mirror of
https://github.com/SeanOMik/znc-push.git
synced 2025-02-16 21:50:06 +00:00
Fix pushbullet
Pushbullet gives a misleading error if the client uses www.pushbullet.com instead of api.pushbullet.com. Whatever the reason, using the correct hostname fixes it.
This commit is contained in:
parent
6ed1610ebd
commit
976295bc6f
1 changed files with 1 additions and 1 deletions
2
push.cpp
2
push.cpp
|
@ -260,7 +260,7 @@ class CPushMod : public CModule
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
service_host = "www.pushbullet.com";
|
service_host = "api.pushbullet.com";
|
||||||
service_url = "/api/pushes";
|
service_url = "/api/pushes";
|
||||||
|
|
||||||
// BASIC auth, base64-encoded APIKey:
|
// BASIC auth, base64-encoded APIKey:
|
||||||
|
|
Loading…
Add table
Reference in a new issue