mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
Use typeof
This commit is contained in:
parent
98ff6cdf91
commit
d60683d7ce
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ export default (params: any) => new Promise(async (res, rej) => {
|
|||
|
||||
const set = {} as any;
|
||||
|
||||
if (ps.disableRegistration === true || ps.disableRegistration === false) {
|
||||
if (typeof ps.disableRegistration === 'boolean') {
|
||||
set.disableRegistration = ps.disableRegistration;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue