From 5c29e25c04d4f40742cf7c979333a97fd4fa65f1 Mon Sep 17 00:00:00 2001 From: AndrewKahr <22359829+AndrewKahr@users.noreply.github.com> Date: Fri, 21 Jan 2022 13:22:41 -0800 Subject: [PATCH] Update src/model/docker.ts Co-authored-by: Webber Takken --- src/model/docker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/docker.ts b/src/model/docker.ts index 78b5d0c9..d5052c8a 100644 --- a/src/model/docker.ts +++ b/src/model/docker.ts @@ -262,7 +262,7 @@ class Docker { throw new Error(`License File was corrupted, unable to locate serial`); } const endIndex = license.indexOf(endKey, startIndex); - //We slice off the first 4 characters as they are garbage values + // Slice off the first 4 characters as they are garbage values return Buffer.from(license.slice(startIndex, endIndex), 'base64').toString('binary').slice(4); } }