From e466259e0e8347077d1fddeee351b9d27e30d40b Mon Sep 17 00:00:00 2001 From: trivernis Date: Mon, 20 Jan 2020 23:05:40 +0100 Subject: [PATCH] Fix create group error only appearing after 30 seconds --- src/app/services/social/social.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/social/social.service.ts b/src/app/services/social/social.service.ts index 2dc1c56..77fe81f 100644 --- a/src/app/services/social/social.service.ts +++ b/src/app/services/social/social.service.ts @@ -36,6 +36,6 @@ export class SocialService extends BaseService { */ createGroup(name: string) { const body = SocialService.buildGroupCreateBody(name); - return this.postGraphql(body); + return this.postGraphql(body, null, 0); } }