From e83d90afc05622e2d6ed4160ac7b56f22e56c787 Mon Sep 17 00:00:00 2001 From: mokanichokani Date: Mon, 9 Jun 2025 13:41:47 +0530 Subject: [PATCH] fixed tugaflix url --- src/providers/sources/tugaflix/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/sources/tugaflix/common.ts b/src/providers/sources/tugaflix/common.ts index b20063b..0e49c0a 100644 --- a/src/providers/sources/tugaflix/common.ts +++ b/src/providers/sources/tugaflix/common.ts @@ -1,6 +1,6 @@ import { load } from 'cheerio'; -export const baseUrl = 'https://tugaflix.best/'; +export const baseUrl = 'https://tugaflix.love/'; export function parseSearch(page: string): { title: string; year?: number; url: string }[] { const results: { title: string; year?: number; url: string }[] = [];