Skip to content

Commit

Permalink
fix: make table non nullable (#913)
Browse files Browse the repository at this point in the history
Starting Android API version 35, the table field of sqlite query function is no longer nullable.
  • Loading branch information
izaaz authored Nov 4, 2024
2 parents 34737cd + 0dbd936 commit c749556
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class LegacyDatabaseStorage(context: Context, databaseName: String) : SQLiteOpen

private fun queryDb(
db: SQLiteDatabase,
table: String?,
table: String,
columns: Array<String?>?,
selection: String?,
selectionArgs: Array<String?>?,
Expand Down

0 comments on commit c749556

Please sign in to comment.