Kaynağa Gözat

Removed check for invalid chars

Jaap Marcus 5 yıl önce
ebeveyn
işleme
cf4ff0fc36
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      func/main.sh

+ 1 - 1
func/main.sh

@@ -676,7 +676,7 @@ is_number_format_valid() {
 
 # Autoreply format validator
 is_autoreply_format_valid() {
-    if [[ "$1" =~ [$|\`] ]] || [ 10240 -le ${#1} ]; then
+    if [[ 10240 -le ${#1} ]; then
         check_result $E_INVALID "invalid autoreply format :: $1"
     fi
 }