Skip to content

Commit

Permalink
Fix missing field from db update
Browse files Browse the repository at this point in the history
  • Loading branch information
micahmo committed Jul 17, 2024
1 parent e2c01f3 commit 2e13a50
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/account/models/account.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class Account {
username: Value(account.username),
jwt: Value(account.jwt),
instance: Value(account.instance),
anonymous: Value(account.anonymous),
userId: Value(account.userId),
listIndex: newIndex,
),
Expand Down Expand Up @@ -160,6 +161,7 @@ class Account {
username: Value(account.username),
jwt: Value(account.jwt),
instance: Value(account.instance),
anonymous: Value(account.anonymous),
userId: Value(account.userId),
listIndex: Value(account.index),
));
Expand Down

0 comments on commit 2e13a50

Please sign in to comment.