Object.assign is overkill here
This commit is contained in:
parent
e8dbbd876c
commit
5f11790f6b
1 changed files with 2 additions and 2 deletions
|
@ -158,7 +158,7 @@ export class HomeServerApi {
|
|||
|
||||
register(username: string | null, password: string, initialDeviceDisplayName: string, auth?: Record<string, any>, inhibitLogin: boolean = true , options: IRequestOptions = {}): IHomeServerRequest {
|
||||
Object.assign(options, { allowedErrors: [401] });
|
||||
const body = {
|
||||
const body: any = {
|
||||
auth,
|
||||
password,
|
||||
initial_device_displayname: initialDeviceDisplayName,
|
||||
|
@ -166,7 +166,7 @@ export class HomeServerApi {
|
|||
};
|
||||
if (username) {
|
||||
// username is optional for registration
|
||||
Object.assign(body, { username });
|
||||
body.username = username;
|
||||
}
|
||||
return this._unauthedRequest( "POST", this._url("/register", CS_V3_PREFIX), undefined, body, options);
|
||||
}
|
||||
|
|
Reference in a new issue