Fix schedulable flag for OpenAI and Azure accounts

This commit is contained in:
Feng Yue
2025-09-02 09:58:05 +08:00
parent 68603bc046
commit 60428921a1
2 changed files with 7 additions and 1 deletions

View File

@@ -296,7 +296,11 @@ async function getAllAccounts() {
}
}
accounts.push(accountData)
accounts.push({
...accountData,
isActive: accountData.isActive === 'true',
schedulable: accountData.schedulable !== 'false'
})
}
}