Skip to content

Commit

Permalink
Oops missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
BoD committed Jan 11, 2024
1 parent 9c91828 commit 8907460
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,15 @@ actual class SqlNormalizedCacheFactory actual constructor(
factory: SupportSQLiteOpenHelper.Factory = FrameworkSQLiteOpenHelperFactory(),
configure: ((SupportSQLiteDatabase) -> Unit)? = null,
useNoBackupDirectory: Boolean = false,
windowSizeBytes: Long? = null,
withDates: Boolean = false,
) : this(
AndroidSqliteDriver(
getSchema(withDates),
context.applicationContext,
name,
factory,
object : AndroidSqliteDriver.Callback(getSchema()) {
object : AndroidSqliteDriver.Callback(getSchema(withDates)) {
override fun onConfigure(db: SupportSQLiteDatabase) {
super.onConfigure(db)
configure?.invoke(db)
Expand Down

0 comments on commit 8907460

Please sign in to comment.