From 558fc583711aac811686d5aa0e271e560487d312 Mon Sep 17 00:00:00 2001 From: Bryce Date: Wed, 6 Sep 2023 08:00:59 -0700 Subject: [PATCH] Addressing warnings --- src/clj/auto_ap/handler.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/clj/auto_ap/handler.clj b/src/clj/auto_ap/handler.clj index f7e15d62..230d9940 100644 --- a/src/clj/auto_ap/handler.clj +++ b/src/clj/auto_ap/handler.clj @@ -222,7 +222,8 @@ (sequential? x-clients) (first x-clients))] (do - (assert-can-see-client identity client-id) + (assert-can-see-client identity (cond-> client-id + (string? client-id) (Long/parseLong))) [client-id]) x-clients) (catch Exception e