From 9b389db9d84825f6cf8ec55c5e1caf0dda0ab584 Mon Sep 17 00:00:00 2001 From: Vincent Lee Date: Thu, 12 May 2022 20:02:35 -0700 Subject: [PATCH] Fix crash if debugserver option not present --- main.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.rkt b/main.rkt index b989c94..3c80e96 100755 --- a/main.rkt +++ b/main.rkt @@ -114,7 +114,7 @@ (vector-ref v 0) (vector-ref v 1))) - (when (hash-ref config 'debugserver) + (when (hash-ref config 'debugserver #f) (dbg:serve)) (call-with-sandbox-conf -- 2.45.2