Skip to content
This repository has been archived by the owner on Feb 23, 2020. It is now read-only.

Commit

Permalink
Fix url regex
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas Kuche <Jonas.kuche@gmail.com>
  • Loading branch information
Zitrone44 committed Apr 27, 2018
1 parent e9078a7 commit e3b222f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zlnk"
version = "0.4.4"
version = "0.4.5"
authors = ["Jonas Kuche <Jonas.kuche@gmail.com>"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/env_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub struct Env {
pub disable_stats: bool
}

const URL_REGEX: &'static str = r"^(https?://)?([\da-z\.-]+)\.([a-z\.]{2,6})([/\w \.-]*)*/?$";
const URL_REGEX: &'static str = r"https?://(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)";

pub fn init() -> Env {
dotenv().ok();
Expand Down

0 comments on commit e3b222f

Please sign in to comment.