From bcc745f8339186cb7bdbfb4be72c457a2a373bff Mon Sep 17 00:00:00 2001
From: Benjamin Auder <benjamin.auder@somewhere>
Date: Fri, 9 Apr 2021 16:02:50 +0200
Subject: [PATCH] Fix live games

---
 client/src/views/Hall.vue | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue
index f3c421e6..05ee05b5 100644
--- a/client/src/views/Hall.vue
+++ b/client/src/views/Hall.vue
@@ -1403,7 +1403,8 @@ export default {
           moves: [],
           clocks: [-1, -1], //-1 = unstarted
           chats: [],
-          score: "*"
+          score: "*",
+          options: JSON.stringify(gameInfo.options)
         }
       );
       setTimeout(
-- 
2.44.0