From c45a3e527558066f1d61a60674c844cb04aa0164 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Mon, 3 Oct 2022 16:06:22 -0500 Subject: [PATCH] Add colon to allowed characters --- test/prebuild/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/prebuild/index.js b/test/prebuild/index.js index f94d86e..c1381ca 100644 --- a/test/prebuild/index.js +++ b/test/prebuild/index.js @@ -16,7 +16,7 @@ import { require('dotenv').config() -const allowedTitleCharacters = new Set( 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890 -+_.®/\()音乐体验版'.split('') ) +const allowedTitleCharacters = new Set( 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890 -+:_.®/\()音乐体验版'.split('') ) // Detect Emojis(Extended Pictograph) in string // https://stackoverflow.com/a/64007175/1397641