From 829b8af942b97e2b20e0ece79a015aa17de96b0a Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Fri, 1 Oct 2021 01:54:44 -0600 Subject: [PATCH] Fixed mangled merge where getSubscriptions became getAllSubscriptions --- src/app/posts.services.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/posts.services.ts b/src/app/posts.services.ts index df2f069..9be0841 100644 --- a/src/app/posts.services.ts +++ b/src/app/posts.services.ts @@ -529,7 +529,7 @@ export class PostsService implements CanActivate { } getAllSubscriptions() { - return this.http.post(this.path + 'getAllSubscriptions', {}, this.httpOptions); + return this.http.post(this.path + 'getSubscriptions', {}, this.httpOptions); } getCurrentDownloads(uids: Array = null) {