diff options
Diffstat (limited to '')
| -rw-r--r-- | lib/Properties.hs | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Properties.hs b/lib/Properties.hs index f346f7f..9cde1ec 100644 --- a/lib/Properties.hs +++ b/lib/Properties.hs @@ -45,7 +45,8 @@ import           LintWriter        (LintWriter, adjust, askContext,  import           Paths             (PathResult (..), RelPath (..), getExtension,                                      isOldStyle, parsePath)  import           Types             (Dep (Link, Local, LocalMap, MapLink)) -import           Uris              (SubstError (..), applySubsts, parseUri, extractDomain) +import           Uris              (SubstError (..), applySubsts, extractDomain, +                                    parseUri) @@ -344,10 +345,10 @@ checkObjectGroupProperty (Property name _) = case name of                         \not the object layer."    _ -> warn $ "unknown property " <> prettyprint name <> " for objectgroup layers" -checkIsRc3Url :: Text -> Bool  +checkIsRc3Url :: Text -> Bool  checkIsRc3Url text= case extractDomain text of      Nothing -> False -    Just domain -> do  +    Just domain -> do        domain == "https://static.rc3.world"  | 
