From b631b10ca6fcc1217b9d11ec3ddbb585e4e8c4a5 Mon Sep 17 00:00:00 2001 From: Abdussamet Kocak Date: Sun, 27 Feb 2022 15:55:39 +0300 Subject: [PATCH] fix: Remove proxy --- core/diyanet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/diyanet.py b/core/diyanet.py index 6ce1af8..01803f4 100644 --- a/core/diyanet.py +++ b/core/diyanet.py @@ -39,7 +39,7 @@ async def parse_prayer_times(url: str) -> List[PrayerTimes]: def make_location_url(location_id: int) -> str: url = f'https://namazvakitleri.diyanet.gov.tr/en-US/{location_id}' - return f'https://proxy.abdusco.workers.dev?url={quote(url)}' + return url async def get_prayer_times(location_id: int) -> List[PrayerTimes]: