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({
|
||||
call: 'keys',
|
||||
httpType: 'GET',
|
||||
urlParameters: `/${serviceId}/${deviceId || '*'}?pq=true`,
|
||||
urlParameters: `/${serviceId}/${deviceId || '*'}`,
|
||||
responseType: 'json',
|
||||
validateResponse: { identityKey: 'string', devices: 'object' },
|
||||
})) as ServerKeyResponseType;
|
||||
|
@ -2563,7 +2563,7 @@ export function initialize({
|
|||
const keys = (await _ajax({
|
||||
call: 'keys',
|
||||
httpType: 'GET',
|
||||
urlParameters: `/${serviceId}/${deviceId || '*'}?pq=true`,
|
||||
urlParameters: `/${serviceId}/${deviceId || '*'}`,
|
||||
responseType: 'json',
|
||||
validateResponse: { identityKey: 'string', devices: 'object' },
|
||||
unauthenticated: true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue