Telemetry fixes

This commit is contained in:
Maurus Decimus
2026-04-12 18:52:18 +02:00
parent 1afad4d843
commit 7564f51642
47 changed files with 2070 additions and 344 deletions

View File

@@ -401,8 +401,8 @@
if (isDevice) {
var req = {
type: 'authDevice',
account_name: creds.account_name,
account_secret: creds.account_secret,
accountName: creds.account_name,
accountSecret: creds.account_secret,
code: ($('device-code').value || '').trim()
};
if (otpValue) req.mfaToken = otpValue;
@@ -410,9 +410,9 @@
}
var r = {
type: 'authCode',
account_name: creds.account_name,
account_secret: creds.account_secret,
client_id: oauth.client_id || ''
accountName: creds.account_name,
accountSecret: creds.account_secret,
clientId: oauth.client_id || ''
};
if (oauth.redirect_uri) r.redirectUri = oauth.redirect_uri;
if (oauth.scope) r.scope = oauth.scope;

File diff suppressed because one or more lines are too long