@whyour/qinglong 2.19.0-1 → 2.19.0-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -298,12 +298,13 @@ let UserService = class UserService {
|
|
|
298
298
|
}
|
|
299
299
|
}
|
|
300
300
|
async resetAuthInfo(info) {
|
|
301
|
-
const { retries, twoFactorActivated, password } = info;
|
|
301
|
+
const { retries, twoFactorActivated, password, username } = info;
|
|
302
302
|
const authInfo = await this.getAuthInfo();
|
|
303
303
|
await this.updateAuthInfo(authInfo, {
|
|
304
304
|
retries,
|
|
305
305
|
twoFactorActivated,
|
|
306
306
|
password,
|
|
307
|
+
username
|
|
307
308
|
});
|
|
308
309
|
}
|
|
309
310
|
};
|