From 080b6476bf44e76615392043f7397efffb0b8fea Mon Sep 17 00:00:00 2001 From: Florian Barth Date: Sat, 6 Sep 2025 19:09:18 +0200 Subject: [PATCH] :bug: Fix authentication token retrieval in GraphQL service --- lib/src/common/graphql_service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/common/graphql_service.dart b/lib/src/common/graphql_service.dart index 5a45a68f..b039053b 100644 --- a/lib/src/common/graphql_service.dart +++ b/lib/src/common/graphql_service.dart @@ -13,7 +13,7 @@ class GraphQLService { final httpLink = HttpLink('https://api.github.com/graphql'); final authLink = AuthLink( - getToken: () async => 'Bearer ${github.auth.token}', + getToken: () async => 'Bearer ${github.auth.bearerToken}', ); final link = authLink.concat(httpLink);