Compare commits
2 Commits
aace2e98e1
...
0e1fbfeb1b
Author | SHA1 | Date | |
---|---|---|---|
0e1fbfeb1b | |||
4530c7105d |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ussd-tg-proxy",
|
||||
"version": "0.2.4",
|
||||
"version": "0.2.5",
|
||||
"description": "ussd-tg-proxy",
|
||||
"main": "src/index.js",
|
||||
"repository": "https://git.grassecon.net/grassrootseconomics/ussd-tg-proxy.git",
|
||||
|
@ -78,7 +78,10 @@ bot.on("msg:contact", async (ctx) => {
|
||||
const contact = ctx.msg.contact;
|
||||
|
||||
if (ctx.from.id === contact.user_id) {
|
||||
if (contact.phone_number.slice(0, 4) !== "+254") {
|
||||
if (
|
||||
contact.phone_number.slice(0, 4) !== "+254" ||
|
||||
contact.phone_number.slice(0, 3) !== "254"
|
||||
) {
|
||||
return ctx.reply("Sarafu is only available in Kenya at the moment.");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user