Fix mainbg not saving after apply in webui

This commit is contained in:
dannylin0711 2023-09-15 00:46:23 +08:00
parent bc0d5bb0a4
commit 1084ea71ec

View File

@ -23,6 +23,7 @@ export const updateProfile = async (data: {
stampB_R?: string;
stampC_R?: string;
stampD_R?: string;
mainbg?: string;
appeal_frame?: string;
support_team?: string;
}) => {
@ -113,6 +114,11 @@ export const updateProfile = async (data: {
if (!_.isNaN(validStampD_R)) update.stampD_R = validStampD_R;
}
if (data.mainbg && data.mainbg.length > 0) {
const validMainbg = parseInt(data.mainbg);
if (!_.isNaN(validMainbg)) update.mainbg = validMainbg;
}
await DB.Update<Profile>(
data.refid,
{ collection: 'profile' },