From a6859fd863dd26938632e582bd94a3237cc71bab Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 11 Oct 2016 10:23:45 +0200 Subject: [PATCH] Fix authors that have a mail or homepage Signed-off-by: Joas Schilling --- settings/js/apps.js | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/settings/js/apps.js b/settings/js/apps.js index 9e7118bdfc..e621698874 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -166,7 +166,15 @@ OC.Settings.Apps = OC.Settings.Apps || { } if (_.isArray(app.author)) { - app.author = app.author.join(', '); + var authors = []; + _.each(app.author, function (author) { + if (typeof author === 'string') { + authors.push(author); + } else { + authors.push(author['@value']); + } + }); + app.author = authors.join(', '); } var html = template(app); @@ -486,7 +494,21 @@ OC.Settings.Apps = OC.Settings.Apps || { // Author Name apps = apps.concat(_.filter(OC.Settings.Apps.State.apps, function (app) { if (_.isArray(app.author)) { - return app.author.join(', ').toLowerCase().indexOf(query) !== -1; + var authors = []; + _.each(app.author, function (author) { + if (typeof author === 'string') { + authors.push(author); + } else { + authors.push(author['@value']); + if (!_.isUndefined(author['@attributes']['homepage'])) { + authors.push(author['@attributes']['homepage']); + } + if (!_.isUndefined(author['@attributes']['mail'])) { + authors.push(author['@attributes']['mail']); + } + } + }); + return authors.join(' ').toLowerCase().indexOf(query) !== -1; } return app.author.toLowerCase().indexOf(query) !== -1; }));