diff --git a/text/matcher.go b/text/matcher.go
index fecfe04..bc2aee4 100644
--- a/text/matcher.go
+++ b/text/matcher.go
@@ -13,7 +13,8 @@ import (
 )
 
 func Matcher(update tgbotapi.Update, bot *tgbotapi.BotAPI) {
-	if time.Since(config.BotConfig.Shutup[update.Message.Chat.ID]) <= time.Minute {
+
+	if time.Since(config.BotConfig.Shutup[update.Message.Chat.ID]) <= time.Minute*60 {
 		return
 	}