chore(code_push_client): adjust appId query param

This commit is contained in:
Felix Angelov
2023-03-24 12:16:58 -05:00
committed by Felix Angelov
parent d96c75adbd
commit 7ae6a5faad
@@ -198,7 +198,7 @@ class CodePushClient {
Future<List<Release>> getReleases({required String appId}) async {
final response = await _httpClient.get(
Uri.parse('$hostedUri/api/v1/releases').replace(
queryParameters: {'app-id': appId},
queryParameters: {'appId': appId},
),
headers: _apiKeyHeader,
);