From 654c82c94ddcbf91078918cc3835d4d5787604fe Mon Sep 17 00:00:00 2001 From: Ricardo Amador <32242716+ricardoamador@users.noreply.github.com> Date: Mon, 8 Apr 2024 18:11:28 -0700 Subject: [PATCH] Dummy bbv2 test pr (#3602) *Replace this paragraph with a description of what this PR is changing or adding, and why. Consider including before/after screenshots.* *List which issues are fixed by this PR. You must list at least one issue.* *If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].* --- .../lib/src/request_handlers/scheduler/request_subscription.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/app_dart/lib/src/request_handlers/scheduler/request_subscription.dart b/app_dart/lib/src/request_handlers/scheduler/request_subscription.dart index 874d16d87..e6a9d1b07 100644 --- a/app_dart/lib/src/request_handlers/scheduler/request_subscription.dart +++ b/app_dart/lib/src/request_handlers/scheduler/request_subscription.dart @@ -48,6 +48,7 @@ class SchedulerRequestSubscription extends SubscriptionHandler { try { jsonData = jsonDecode(data) as Map; } on FormatException { + log.info('alternate decoding method being tried.'); jsonData = json.decode(String.fromCharCodes(base64.decode(data))) as Map; } request = BatchRequest.fromJson(jsonData);