Fixed mangled merge where getSubscriptions became getAllSubscriptions

This commit is contained in:
Isaac Abadi
2021-10-01 01:54:44 -06:00
parent be94bc81c8
commit 829b8af942

View File

@@ -529,7 +529,7 @@ export class PostsService implements CanActivate {
} }
getAllSubscriptions() { getAllSubscriptions() {
return this.http.post<GetAllSubscriptionsResponse>(this.path + 'getAllSubscriptions', {}, this.httpOptions); return this.http.post<GetAllSubscriptionsResponse>(this.path + 'getSubscriptions', {}, this.httpOptions);
} }
getCurrentDownloads(uids: Array<string> = null) { getCurrentDownloads(uids: Array<string> = null) {