From 92093adb32b73aaf923a1a92cf87f32f7f2c596b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ola=20Flisb=C3=A4ck?= Date: Wed, 1 Feb 2023 14:40:31 +0100 Subject: [PATCH] fix: operator precedence error --- src/Client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.ts b/src/Client.ts index 060b60c..15f0319 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -73,7 +73,7 @@ export class Client { } if (jupyterHubUserPath) { - this.jhUserPath = jupyterHubUserPath + jupyterHubUserPath.endsWith('/') ? '' : '/' + this.jhUserPath = jupyterHubUserPath + (jupyterHubUserPath.endsWith('/') ? '' : '/') } this.jhToken = jupyterHubToken