This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/flex-utilities.git
commit 6619f4dc0e120db319e9acf5fe43264650c42128 Author: Josh Tynjala <[email protected]> AuthorDate: Thu Sep 4 13:45:36 2025 -0700 installer: fix MD5CompareUtil.MD5_DOMAIN The old domain was redirecting to this new Apache domain, but AIR doesn't follow redirects by default. --- .../installer/src/org/apache/flex/packageflexsdk/util/MD5CompareUtil.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flex-installer/installer/src/org/apache/flex/packageflexsdk/util/MD5CompareUtil.as b/flex-installer/installer/src/org/apache/flex/packageflexsdk/util/MD5CompareUtil.as index 2dc601bb..56af14b4 100644 --- a/flex-installer/installer/src/org/apache/flex/packageflexsdk/util/MD5CompareUtil.as +++ b/flex-installer/installer/src/org/apache/flex/packageflexsdk/util/MD5CompareUtil.as @@ -47,7 +47,7 @@ public class MD5CompareUtil extends EventDispatcher // //-------------------------------------------------------------------------- - public static const MD5_DOMAIN:String = "https://www.apache.org/dist/"; + public static const MD5_DOMAIN:String = "https://downloads.apache.org/"; public static const MD5_POSTFIX:String = ".md5";
