Skip to content

Commit

Permalink
chore: detekt
Browse files Browse the repository at this point in the history
  • Loading branch information
yamilmedina committed May 10, 2024
1 parent 8e3e69e commit 23c7c0d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ actual class CoreLogic(
override val globalDatabaseBuilder: GlobalDatabaseBuilder = globalDatabaseProvider(
platformDatabaseData = PlatformDatabaseData(appContext),
queriesContext = KaliumDispatcherImpl.io,
passphrase = if (kaliumConfigs.shouldEncryptData) SecurityHelperImpl(globalPreferences.passphraseStorage).globalDBSecret() else null,
passphrase = if (kaliumConfigs.shouldEncryptData) {
SecurityHelperImpl(globalPreferences.passphraseStorage).globalDBSecret()
} else {
null
},
enableWAL = true
)

Expand Down

0 comments on commit 23c7c0d

Please sign in to comment.