Fix requests for deleted users

When users are requested from the authorship which no longer exist, they
shouldn't cause a 500.

Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
This commit is contained in:
Sheogorath 2018-05-25 16:15:10 +02:00
parent 4229084c62
commit e31d204d74
No known key found for this signature in database
GPG key ID: 1F05CC3635CDDFFD
2 changed files with 10 additions and 5 deletions

View file

@ -66,6 +66,9 @@ module.exports = function (sequelize, DataTypes) {
}) })
}, },
getProfile: function (user) { getProfile: function (user) {
if (!user) {
return null
}
return user.profile ? User.parseProfile(user.profile) : (user.email ? User.parseProfileByEmail(user.email) : null) return user.profile ? User.parseProfile(user.profile) : (user.email ? User.parseProfileByEmail(user.email) : null)
}, },
parseProfile: function (profile) { parseProfile: function (profile) {

View file

@ -486,6 +486,7 @@ function startConnection (socket) {
for (var i = 0; i < note.authors.length; i++) { for (var i = 0; i < note.authors.length; i++) {
var author = note.authors[i] var author = note.authors[i]
var profile = models.User.getProfile(author.user) var profile = models.User.getProfile(author.user)
if (profile) {
authors[author.userId] = { authors[author.userId] = {
userid: author.userId, userid: author.userId,
color: author.color, color: author.color,
@ -493,6 +494,7 @@ function startConnection (socket) {
name: profile.name name: profile.name
} }
} }
}
notes[noteId] = { notes[noteId] = {
id: noteId, id: noteId,