Fix data type of notification.isDefault and notification.active (#1765)

This commit is contained in:
Louis Lam 2022-06-15 19:11:52 +08:00
parent 81d5360520
commit fdbdf83a0d

View File

@ -22,7 +22,10 @@ async function sendNotificationList(socket) {
]);
for (let bean of list) {
result.push(bean.export());
let notificationObject = bean.export();
notificationObject.isDefault = (notificationObject.isDefault === 1);
notificationObject.active = (notificationObject.active === 1);
result.push(notificationObject);
}
io.to(socket.userID).emit("notificationList", result);