aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chrome/js/redirect.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/js/redirect.js b/chrome/js/redirect.js
index e1e1c68..756ae15 100644
--- a/chrome/js/redirect.js
+++ b/chrome/js/redirect.js
@@ -109,7 +109,8 @@ Redirect.prototype = {
if (redirectTo !== null) {
if (this.disabled) {
result.isDisabledMatch = true;
- } else if (this._excludeMatch(url)) {
+ }
+ if (this._excludeMatch(url)) {
result.isExcludeMatch = true;
} else {
result.isMatch = true;