Remove auth_mode

This commit is contained in:
binwiederhier
2026-01-22 20:26:00 -05:00
parent b67ffa4f5f
commit 9b1be517ea
6 changed files with 13 additions and 20 deletions

View File

@@ -343,9 +343,9 @@ class AccountApi {
async sync() {
try {
// For proxy auth, store the username from config if not already in session
if (config.auth_mode === "proxy" && config.username && !session.exists()) {
console.log(`[AccountApi] Proxy auth: storing session for user ${config.username}`);
await session.store(config.username, ""); // Empty token for proxy auth
if (config.auth_user && !session.exists()) {
console.log(`[AccountApi] Proxy auth: storing session for user ${config.auth_user}`);
await session.store(config.auth_user, ""); // Empty token for proxy auth
}
if (!session.exists()) {
return null;