From b2c0b606c08382735fb2cd42360c88022a2cddef Mon Sep 17 00:00:00 2001 From: problematicconsumer Date: Mon, 6 Nov 2023 22:05:51 +0330 Subject: [PATCH] Fix appcast url --- lib/domain/constants.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/domain/constants.dart b/lib/domain/constants.dart index ec42f191..da4e62dd 100644 --- a/lib/domain/constants.dart +++ b/lib/domain/constants.dart @@ -10,7 +10,7 @@ abstract class Constants { static const githubLatestReleaseUrl = "https://github.com/hiddify/hiddify-next/releases/latest"; static const appCastUrl = - "https://github.com/hiddify/hiddify-next/appcast.xml"; + "https://raw.githubusercontent.com/hiddify/hiddify-next/main/appcast.xml"; static const telegramChannelUrl = "https://t.me/hiddify"; static const privacyPolicyUrl = "https://hiddify.com/en/privacy-policy/"; static const termsAndConditionsUrl = "https://hiddify.com/terms/";