fix: #500, dont load loggedInUser if quickreply isnt enabled

main
Barış Soner Uşaklı 3 years ago
parent 41e4cfb8e2
commit 5a175f81e7

@ -68,6 +68,8 @@ function renderAdmin(req, res, next) {
}
library.addUserToTopic = async function (hookData) {
const settings = await meta.settings.get('persona');
if (settings.enableQuickReply === 'on') {
if (hookData.req.user) {
const userData = await user.getUserData(hookData.req.user.uid);
hookData.templateData.loggedInUser = userData;
@ -80,6 +82,8 @@ library.addUserToTopic = async function (hookData) {
'icon:bgColor': '#aaa',
};
}
}
return hookData;
};

Loading…
Cancel
Save