fix incorrect reference to proxyAccount.enabled in settings.vue

This commit is contained in:
Hazelnoot 2025-08-09 21:21:38 -04:00
parent d25a407c09
commit 19a7c68fb8

View file

@ -472,7 +472,7 @@ const proxyAccountForm = useForm({
description: state.description,
});
}
if (state.enabled !== proxyAccount.enabled) {
if (state.enabled !== meta.enableProxyAccount) {
await os.apiWithDialog('admin/update-meta', {
enableProxyAccount: state.enabled,
});