Fix crash in RecipientTable.getAllPnis()
This commit is contained in:
parent
f644115b54
commit
e93c6957ac
1 changed files with 1 additions and 1 deletions
|
@ -2080,7 +2080,7 @@ open class RecipientTable(context: Context, databaseHelper: SignalDatabase) : Da
|
|||
return readableDatabase
|
||||
.select(PNI_COLUMN)
|
||||
.from(TABLE_NAME)
|
||||
.where("$PNI NOT NULL")
|
||||
.where("$PNI_COLUMN NOT NULL")
|
||||
.run()
|
||||
.readToSet { PNI.parseOrThrow(it.requireString(PNI_COLUMN)) }
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue