diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/InlineHistory/web/inline-history.js | 4 |
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; |