From d9fdbe3c59401310b3adae797bc1d5739e0ce6fe Mon Sep 17 00:00:00 2001 From: andres Date: Tue, 14 Mar 2023 01:46:16 +0100 Subject: [PATCH] try another url --- src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 0fc81b7..b103618 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,7 +7,8 @@ import { message } from 'telegraf/filters' import cron from 'node-cron' dotenv.config() -const url = 'https://icp.administracionelectronica.gob.es/icpplustiem/citar?p=28&locale=es&appkey=null' +const url = 'https://google.com' +// const url = 'https://icp.administracionelectronica.gob.es/icpplustiem/citar?p=28&locale=es&appkey=null' const { NIE, NAME, COUNTRY_CODE } = process.env const NO_APPOINTMENT = 'no hay citas disponibles' const delay = async (ms: number) => await new Promise(resolve => setTimeout(resolve, ms))