Add plus to allowed title characters

This commit is contained in:
Sam Carlton 2022-10-03 16:01:54 -05:00
parent 08bde562b0
commit 7f55f6f80f

View file

@ -16,7 +16,7 @@ import {
require('dotenv').config() require('dotenv').config()
const allowedTitleCharacters = new Set( 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890 -_.®/\()音乐体验版'.split('') ) const allowedTitleCharacters = new Set( 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890 -+_.®/\()音乐体验版'.split('') )
// Detect Emojis(Extended Pictograph) in string // Detect Emojis(Extended Pictograph) in string
// https://stackoverflow.com/a/64007175/1397641 // https://stackoverflow.com/a/64007175/1397641