From 34f98de61d1e7acd99f15f338441f305a79e7cab Mon Sep 17 00:00:00 2001 From: notplants Date: Tue, 18 May 2021 18:53:52 +0200 Subject: [PATCH] Fix regex --- src/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.rs b/src/constants.rs index c77125a..174409a 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -1,4 +1,4 @@ // this regex is used to validate that domains are in the correct format // e.g. blue.dyn.peachcloud.org -pub const DOMAIN_REGEX: &str = r"^.*\.dyn\.commointernet\.net$"; \ No newline at end of file +pub const DOMAIN_REGEX: &str = r"^.*\.dyn\.commoninternet\.net$"; \ No newline at end of file