Remove unused query parameter
This commit is contained in:
parent
d31d6474fe
commit
2b79a65e72
1 changed files with 2 additions and 2 deletions
|
@ -2548,7 +2548,7 @@ export function initialize({
|
||||||
const keys = (await _ajax({
|
const keys = (await _ajax({
|
||||||
call: 'keys',
|
call: 'keys',
|
||||||
httpType: 'GET',
|
httpType: 'GET',
|
||||||
urlParameters: `/${serviceId}/${deviceId || '*'}?pq=true`,
|
urlParameters: `/${serviceId}/${deviceId || '*'}`,
|
||||||
responseType: 'json',
|
responseType: 'json',
|
||||||
validateResponse: { identityKey: 'string', devices: 'object' },
|
validateResponse: { identityKey: 'string', devices: 'object' },
|
||||||
})) as ServerKeyResponseType;
|
})) as ServerKeyResponseType;
|
||||||
|
@ -2563,7 +2563,7 @@ export function initialize({
|
||||||
const keys = (await _ajax({
|
const keys = (await _ajax({
|
||||||
call: 'keys',
|
call: 'keys',
|
||||||
httpType: 'GET',
|
httpType: 'GET',
|
||||||
urlParameters: `/${serviceId}/${deviceId || '*'}?pq=true`,
|
urlParameters: `/${serviceId}/${deviceId || '*'}`,
|
||||||
responseType: 'json',
|
responseType: 'json',
|
||||||
validateResponse: { identityKey: 'string', devices: 'object' },
|
validateResponse: { identityKey: 'string', devices: 'object' },
|
||||||
unauthenticated: true,
|
unauthenticated: true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue