From 210149d6be00df9f87db444839fb877162bf68c6 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Wed, 7 Dec 2022 23:29:10 +0000 Subject: [PATCH] Fixed tests. Hmm. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4072 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- core/ssb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ssb.js b/core/ssb.js index 118d49e2..67e919f7 100644 --- a/core/ssb.js +++ b/core/ssb.js @@ -4,7 +4,7 @@ var g_database = new Database('core'); let g_attendants = {}; const k_use_create_history_stream = false; const k_blobs_concurrent_target = 8; -const k_settings = JSON.parse(g_database.get('settings') ?? '{}'); +const k_settings = JSON.parse(g_database.get('settings') ?? '{"room": true}'); function following(db, id) { var o = db.get(id + ":following");