From d3e26b03f950b411fee11dc8fa90e53f58f2eabf Mon Sep 17 00:00:00 2001 From: Ruben Medina Date: Wed, 28 Apr 2021 23:06:21 -0700 Subject: [PATCH] fix(request-service): prevent api errors due to non-uppercase config vin (#57) --- 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(), }; }