summaryrefslogtreecommitdiffstats
path: root/extensions/InlineHistory/web
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/InlineHistory/web')
-rw-r--r--extensions/InlineHistory/web/inline-history.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/InlineHistory/web/inline-history.js b/extensions/InlineHistory/web/inline-history.js
index a6655e10b..94a1bc124 100644
--- a/extensions/InlineHistory/web/inline-history.js
+++ b/extensions/InlineHistory/web/inline-history.js
@@ -268,8 +268,8 @@ var inline_history = {
if (!match) continue;
requesteeLogin = this.htmlDecode(match[1]);
match = requesteeLogin.match(/<([^>]+)>/);
- if (!match) continue;
- requesteeLogin = match[1];
+ if (match)
+ requesteeLogin = match[1];
}
var flagValue = requestee ? flag + '(' + requesteeLogin + ')' : flag;