mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-03 18:21:05 +02:00
make the existing title checking incasesensitive
This commit is contained in:
parent
28ed5c654f
commit
78f6cfcbde
@ -71,7 +71,7 @@ class DBHelper private constructor(private val mContext: Context) : SQLiteOpenHe
|
|||||||
|
|
||||||
fun doesTitleExist(title: String): Boolean {
|
fun doesTitleExist(title: String): Boolean {
|
||||||
val cols = arrayOf(COL_ID)
|
val cols = arrayOf(COL_ID)
|
||||||
val selection = "$COL_TITLE = ?"
|
val selection = "$COL_TITLE = ? COLLATE NOCASE"
|
||||||
val selectionArgs = arrayOf(title)
|
val selectionArgs = arrayOf(title)
|
||||||
var cursor: Cursor? = null
|
var cursor: Cursor? = null
|
||||||
try {
|
try {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user