From 3ef6184fde8b4b65a4153419a750ebf7c8e7dedf Mon Sep 17 00:00:00 2001 From: Jorge Morante Date: Thu, 26 Oct 2023 18:42:38 +0200 Subject: [PATCH] fix DISALLOWED_CHARS regex --- src/fingers/commands/load_config.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fingers/commands/load_config.cr b/src/fingers/commands/load_config.cr index fb90a70..0d7398a 100644 --- a/src/fingers/commands/load_config.cr +++ b/src/fingers/commands/load_config.cr @@ -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)