mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-01 19:09:30 +01:00
Fix error "cannot read property of undefiend of indexOf" in mail expand on click
This commit is contained in:
parent
0404f7f272
commit
a884f3e444
@ -667,6 +667,8 @@ app.classes.mail = AppJS.extend(
|
||||
for(var i = 0; i < content.length; i++)
|
||||
{
|
||||
// if there is no @ in string, its most likely that we have a comma in the personal name part of the emailaddress
|
||||
if (content[i] != 'undefined' && content[i])
|
||||
{
|
||||
if (content[i].indexOf('@')< 0)
|
||||
{
|
||||
remembervalue = content[i];
|
||||
@ -680,6 +682,7 @@ app.classes.mail = AppJS.extend(
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
widget.set_value({content: content});
|
||||
|
Loading…
Reference in New Issue
Block a user