aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorEinar Egilsson <einar@einaregilsson.com>2020-01-03 09:16:00 +0000
committerGitHub <noreply@github.com>2020-01-03 09:16:00 +0000
commit5a52a13850607443d8f76ecad92e498a66d13166 (patch)
treeb691312f9541024e6f9aac7a155c89ff67466ccc /js
parentd10f9aa1e1c4e20cf1a12455219b1b4ad6b45f95 (diff)
parentd7fc547af3cbe323f7d7921a8e3dfa7a1d80f096 (diff)
Merge pull request #176 from Gitoffthelawn/patch-9
Remove confusing quote mark and period
Diffstat (limited to 'js')
-rw-r--r--js/redirect.js2
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) {