From 260d10c3a34e7da6fd94b6151422ab09f3941c0b Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Tue, 13 Jul 2021 21:27:18 -0400 Subject: [PATCH] Fix invalid default value in options schema (#1827) --- ext/data/schemas/options-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index 52e5fa1f..1565cfe6 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -950,7 +950,7 @@ "terminationCharacterMode": { "type": "string", "enum": ["custom", "custom-no-newlines", "newlines", "none"], - "default": true + "default": "custom" }, "terminationCharacters": { "type": "array",