mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-03 07:36:31 +02:00
Fixed sqlite compilation
This commit is contained in:
@@ -106,7 +106,7 @@ class SupportSQLiteCompat private constructor() {
|
||||
cursorFactory: CursorFactory
|
||||
): Cursor {
|
||||
return sQLiteDatabase.rawQueryWithFactory(
|
||||
cursorFactory, sql, selectionArgs, editTable,
|
||||
cursorFactory, sql, selectionArgs, editTable ?: "",
|
||||
cancellationSignal
|
||||
)
|
||||
}
|
||||
|
||||
@@ -154,7 +154,7 @@ internal class FrameworkSQLiteDatabase(
|
||||
}
|
||||
|
||||
return delegate.rawQueryWithFactory(
|
||||
cursorFactory, query.sql, EMPTY_STRING_ARRAY, null)
|
||||
cursorFactory, query.sql, EMPTY_STRING_ARRAY, "")
|
||||
}
|
||||
|
||||
@RequiresApi(16)
|
||||
|
||||
Reference in New Issue
Block a user