This commit is contained in:
syuilo 2023-03-31 09:20:52 +09:00
parent a23b25bff7
commit 5d94062581
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ export class APIClient {
this.credential = opts.credential; this.credential = opts.credential;
// ネイティブ関数をそのまま変数に代入して使おうとするとChromiumではIllegal invocationエラーが発生するため、 // ネイティブ関数をそのまま変数に代入して使おうとするとChromiumではIllegal invocationエラーが発生するため、
// 環境で実装されているfetchを使う場合は無名関数でラップして使用する // 環境で実装されているfetchを使う場合は無名関数でラップして使用する
this.fetch = opts.fetch || ((...args) => fetch(...args)); this.fetch = opts.fetch ?? ((...args) => fetch(...args));
} }
public request<E extends keyof Endpoints, P extends Endpoints[E]['req']>( public request<E extends keyof Endpoints, P extends Endpoints[E]['req']>(

View File

@ -36,7 +36,7 @@ export default class Stream extends EventEmitter<StreamEvents> {
WebSocket?: any; WebSocket?: any;
}) { }) {
super(); super();
options = options || { }; options = options ?? { };
const query = urlQuery({ const query = urlQuery({
i: user?.token, i: user?.token,