From 838addaae3859000855f3f86826fac9a52e577e1 Mon Sep 17 00:00:00 2001 From: Ruben Medina Date: Wed, 28 Apr 2021 23:05:13 -0700 Subject: [PATCH] fix(request-service): prevent api errors due to non-uppercase config vin --- src/RequestService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/RequestService.ts b/src/RequestService.ts index 6728a70a..1ef2c5ce 100644 --- a/src/RequestService.ts +++ b/src/RequestService.ts @@ -52,6 +52,7 @@ class RequestService { this.config = { checkRequestStatus: true, ...config, + vin: config.vin.toUpperCase(), }; }