mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-02 22:46:40 +09:00
fix(client): wrong scoping breaks 2FA
This commit is contained in:
@ -106,8 +106,8 @@ const props = defineProps({
|
||||
function onUsernameChange() {
|
||||
os.api('users/show', {
|
||||
username: username
|
||||
}).then(user => {
|
||||
user = user;
|
||||
}).then(userResponse => {
|
||||
user = userResponse;
|
||||
}, () => {
|
||||
user = null;
|
||||
});
|
||||
|
Reference in New Issue
Block a user