This commit is contained in:
syuilo 2018-08-19 04:01:10 +09:00
parent 78b560d89a
commit f3936a79aa

View file

@ -105,7 +105,11 @@ export default async (params: any, user: ILocalUser, app: IApp) => new Promise(a
}
}
if (wallpaperId) {
if (wallpaperId !== undefined) {
if (wallpaperId === null) {
updates.wallpaperUrl = null;
updates.wallpaperColor = null;
} else {
const wallpaper = await DriveFile.findOne({
_id: wallpaperId
});
@ -118,6 +122,7 @@ export default async (params: any, user: ILocalUser, app: IApp) => new Promise(a
updates.wallpaperColor = wallpaper.metadata.properties.avgColor;
}
}
}
await User.update(user._id, {
$set: updates