Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Fix: Add missing await (#1538)
Browse files Browse the repository at this point in the history
  • Loading branch information
ua741 authored Nov 24, 2023
2 parents 75f141e + 524c68b commit e9becab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions lib/generated/intl/messages_zh.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/utils/crypto_util.dart
Original file line number Diff line number Diff line change
Expand Up @@ -451,9 +451,9 @@ class CryptoUtil {
Uint8List salt,
int memLimit,
int opsLimit,
) {
) async {
try {
return _computer.compute(
return await _computer.compute(
cryptoPwHash,
param: {
"password": password,
Expand Down

0 comments on commit e9becab

Please sign in to comment.