From 8b03b0a8d226c191592078575614e6e18b9523a9 Mon Sep 17 00:00:00 2001 From: Krisztian Jofoldi Date: Mon, 10 Nov 2025 17:05:39 +0100 Subject: [PATCH] Update XLL fileName regex to disallow whitespace and improve JavaScript compatibility --- MicrosoftTeams.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MicrosoftTeams.schema.json b/MicrosoftTeams.schema.json index b980e6a..5716aed 100644 --- a/MicrosoftTeams.schema.json +++ b/MicrosoftTeams.schema.json @@ -2586,7 +2586,7 @@ "properties": { "fileName": { "type": "string", - "pattern": "^(?!.*[\\r\\n\\f\\b\\v\\a\\t])[\\S]*\\.xll$", + "pattern": "^[^\\s]*\\.xll$", "minLength": 1, "maxLength": 64 } @@ -3053,4 +3053,4 @@ "additionalProperties": false } } -} \ No newline at end of file +}