Skip to content

Commit

Permalink
Fix crash in RecipientTable.getAllPnis()
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal committed Aug 18, 2023
1 parent f644115 commit e93c695
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)) }
}
Expand Down

0 comments on commit e93c695

Please sign in to comment.