Merge pull request #659 from h3poteto/fix/unique-order

Fix order of unique when initialize
This commit is contained in:
AkiraFukushima 2018-10-13 01:26:39 +09:00 committed by GitHub
commit d3cc68fbd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,9 +7,9 @@ export default class Account {
}
async initialize () {
await this.updateUnique()
await this.cleanup()
await this.reorder()
await this.updateUnique()
}
updateUnique () {