From cf32d412da8e5a39be490606470a9a53ad63d203 Mon Sep 17 00:00:00 2001 From: Lluis Date: Wed, 14 Feb 2024 00:36:24 +0100 Subject: [PATCH] reverse commands --- lib/inputParser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/inputParser.js b/lib/inputParser.js index c0dc9f8..b042e8c 100644 --- a/lib/inputParser.js +++ b/lib/inputParser.js @@ -28,11 +28,11 @@ class InputParser { } isAskingForGetBirthday (text) { - return text.toLowerCase().startsWith('!cuandocumple') + return text.toLowerCase().startsWith('!cumple') } isAskingForAddBirthday (text) { - return text.toLowerCase().startsWith('!cumple') + return text.toLowerCase().startsWith('!micumple') } }