Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekmedia committed Oct 23, 2024
1 parent 269e68f commit 58e2bc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion auth/lib/utils/directory_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ class DirectoryUtils {
}

File newOfflineDatabaseFile = File(
p.join(newDataDir.path, "${prefix}ente.offline_authenticator.db"));
p.join(newDataDir.path, "${prefix}ente.offline_authenticator.db"),
);
if (await offlineDatabaseFile.exists() &&
!await newOfflineDatabaseFile.exists()) {
await offlineDatabaseFile.copy(newOfflineDatabaseFile.path);
Expand Down

0 comments on commit 58e2bc1

Please sign in to comment.