From 7f55f6f80fe65a36c98da723f0ba6e98f1e845f8 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Mon, 3 Oct 2022 16:01:54 -0500 Subject: [PATCH] Add plus to allowed title 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 da43e09..f94d86e 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