fix smsstop

This commit is contained in:
osaajani 2021-07-13 02:36:22 +02:00
parent 8492da652a
commit 1f46b3ad57
2 changed files with 3 additions and 3 deletions

View file

@ -82,6 +82,6 @@ namespace controllers\internals;
*/
public function check_for_stop (string $str)
{
return trim(mb_strtolower($str)) == 'STOP';
return trim(mb_strtolower($str)) == 'stop';
}
}