diff options
author | Gitoffthelawn <Gitoffthelawn@users.noreply.github.com> | 2020-01-02 16:15:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 16:15:53 -0800 |
commit | d7fc547af3cbe323f7d7921a8e3dfa7a1d80f096 (patch) | |
tree | b7398dd87a957dccd438fcbb2bae607e620b94c3 /js | |
parent | a0d24972c2ed27335df6e4c3b3ecc1116f78d7ed (diff) |
Remove confusing quote mark and period
To avoid confusion, best to show the result string without any added punctuation.
Diffstat (limited to 'js')
-rw-r--r-- | js/redirect.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/redirect.js b/js/redirect.js index 23ae409..821826f 100644 --- a/js/redirect.js +++ b/js/redirect.js @@ -157,7 +157,7 @@ Redirect.prototype = { } if (match.isMatch && !match.redirectTo.match(/^https?\:\/\//)) { - this.error = 'The redirect result must start with http:// or https://, current result is: "' + match.redirectTo + "."; + this.error = 'The redirect result must start with http:// or https://, current result is: ' + match.redirectTo; return; } if (!match.isMatch) { |