mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-21 17:34:46 -05:00
Fix mainbg not saving after apply in webui
This commit is contained in:
parent
bc0d5bb0a4
commit
1084ea71ec
|
|
@ -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' },
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user