summaryrefslogtreecommitdiff
path: root/src/client/app/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/common')
-rw-r--r--src/client/app/common/views/components/signin.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/app/common/views/components/signin.vue b/src/client/app/common/views/components/signin.vue
index 5230ac371a..aad9a1b7cf 100644
--- a/src/client/app/common/views/components/signin.vue
+++ b/src/client/app/common/views/components/signin.vue
@@ -53,8 +53,9 @@ export default Vue.extend({
this.signing = true;
(this as any).api('signin', {
- username: this.username,
- password: this.password,
+ // password という名前(または username とのペア?)では何らかのフィルタリングがされるっぽい?
+ x: this.username,
+ y: this.password,
token: this.user && this.user.twoFactorEnabled ? this.token : undefined
}).then(() => {
location.reload();