mirror of
https://github.com/bitwarden/android.git
synced 2026-06-07 23:11:01 -05:00
Update getAllCiphers query to be consistent with other queries (#413)
This commit is contained in:
committed by
Álison Fernandes
parent
09d668f5ac
commit
8a2a205247
@@ -24,7 +24,7 @@ interface CiphersDao {
|
||||
/**
|
||||
* Retrieves all ciphers from the database for a given [userId].
|
||||
*/
|
||||
@Query("SELECT * FROM ciphers WHERE user_id IS :userId")
|
||||
@Query("SELECT * FROM ciphers WHERE user_id = :userId")
|
||||
fun getAllCiphers(
|
||||
userId: String,
|
||||
): Flow<List<CipherEntity>>
|
||||
|
||||
Reference in New Issue
Block a user