Skip to content

Commit

Permalink
Fix mail attribute
Browse files Browse the repository at this point in the history
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
  • Loading branch information
rullzer committed Jan 2, 2018
1 parent e037bae commit f801dc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions settings/js/apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -803,8 +803,8 @@ OC.Settings.Apps = OC.Settings.Apps || {
if (!_.isUndefined(app.author['@attributes']['homepage'])) {
authors.push(app.author['@attributes']['homepage']);
}
if (!_.isUndefined(app.author['@attributes']['email'])) {
authors.push(app.author['@attributes']['email']);
if (!_.isUndefined(app.author['@attributes']['mail'])) {
authors.push(app.author['@attributes']['mail']);
}
return OC.Settings.Apps._search(authors.join(' '), query);
}
Expand Down

0 comments on commit f801dc8

Please sign in to comment.