diff options
author | Einar Egilsson <einar@einaregilsson.com> | 2020-01-03 09:16:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 09:16:00 +0000 |
commit | 5a52a13850607443d8f76ecad92e498a66d13166 (patch) | |
tree | b691312f9541024e6f9aac7a155c89ff67466ccc /js/redirect.js | |
parent | d10f9aa1e1c4e20cf1a12455219b1b4ad6b45f95 (diff) | |
parent | d7fc547af3cbe323f7d7921a8e3dfa7a1d80f096 (diff) |
Merge pull request #176 from Gitoffthelawn/patch-9
Remove confusing quote mark and period
Diffstat (limited to 'js/redirect.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 116cc72..4ad57d5 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) { |