summaryrefslogtreecommitdiffstats
path: root/lib/core
diff options
context:
space:
mode:
authorLisandro Pérez Meyer <lpmeyer@ics.com>2023-11-28 13:40:59 -0300
committerLisandro Perez Meyer <lpmeyer@ics.com>2023-11-28 17:17:09 +0000
commitb9377beb28bb372f8fc29dfe3eeb9145462b716f (patch)
treedc8ee6133102bd5f789c0a550d7c26345142d1b5 /lib/core
parent8558b640173de8fbfe37111b29e4fc68dbc80da1 (diff)
Update HVAC fan.
This also removes commented out code. Original by Sabin Sajeevan <ssajeevan@ics.com>. Bug-AGL: SPEC-4971 Change-Id: I31c3b3046f6e3bdd9cc641d403467eda11144f31 Signed-off-by: Lisandro Pérez Meyer <lpmeyer@ics.com>
Diffstat (limited to 'lib/core')
-rw-r--r--lib/core/constants/val_client_helper.dart2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/constants/val_client_helper.dart b/lib/core/constants/val_client_helper.dart
index 02912b0..60b3842 100644
--- a/lib/core/constants/val_client_helper.dart
+++ b/lib/core/constants/val_client_helper.dart
@@ -51,7 +51,7 @@ class ValClientHelper {
request.updates.add(update);
Map<String, String> metadata = {};
if (authorization.isNotEmpty) {
- metadata = {'authorization': "Bearer ${authorization}"};
+ metadata = {'authorization': "Bearer $authorization"};
}
await stub.set(request, options: CallOptions(metadata: metadata));
}