mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix JavaScript exception when having users with special names
Summary: The issue was noticed in Firefox when user with login "watch" was registered in the database. And it was caused by Object in Firefox having "watch" method. Solved by checking for whether lookup object does have own property before using it as a map key. Test Plan: To test the issue simply create a user with login "watch", open the phabricator site in Firefox and try to assign any maniphest task to this user. You'll see exception being printed to the javascript console (in my case it's printed to firebug console). Reviewers: #blessed_reviewers, epriestley Reviewed By: epriestley CC: epriestley, aran Differential Revision: https://secure.phabricator.com/D8037
This commit is contained in:
parent
5968ed8fd8
commit
83ab275b0f
1 changed files with 3 additions and 1 deletions
|
@ -185,7 +185,9 @@ JX.install('TypeaheadSource', {
|
|||
this._raw[obj.id] = obj;
|
||||
var t = this.tokenize(obj.tokenizable || obj.name);
|
||||
for (var jj = 0; jj < t.length; ++jj) {
|
||||
this._lookup[t[jj]] = this._lookup[t[jj]] || [];
|
||||
if (!this._lookup.hasOwnProperty(t[jj])) {
|
||||
this._lookup[t[jj]] = [];
|
||||
}
|
||||
this._lookup[t[jj]].push(obj.id);
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue