fix DISALLOWED_CHARS regex

This commit is contained in:
Jorge Morante 2023-10-26 18:42:38 +02:00
parent cb64f9b859
commit 3ef6184fde
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class Fingers::Commands::LoadConfig < Fingers::Commands::Base
property config : Fingers::Config
DISALLOWED_CHARS = /cimqn/
DISALLOWED_CHARS = /[cimqn]/
def initialize(*args)
super(*args)