mirror of
https://github.com/TeamPiped/Piped-Backend
synced 2025-09-04 12:31:00 +02:00
Merge pull request #518 from TeamPiped/pubsub-fix
Fix right pubsub url for subscription.
This commit is contained in:
commit
5723ca0795
@ -44,7 +44,7 @@ public class PubSubHelper {
|
||||
var buffer = new Buffer();
|
||||
formBuilder.build().writeTo(buffer);
|
||||
|
||||
var resp = ReqwestUtils.fetch(callback, "POST", buffer.readByteArray(), Map.of());
|
||||
var resp = ReqwestUtils.fetch(Constants.PUBSUB_HUB_URL, "POST", buffer.readByteArray(), Map.of());
|
||||
|
||||
if (resp.status() != 202)
|
||||
System.out.println("Failed to subscribe: " + resp.status() + "\n" + new String(resp.body()));
|
||||
|
Loading…
x
Reference in New Issue
Block a user