more icons resized on android
Before Width: | Height: | Size: 239 B After Width: | Height: | Size: 218 B |
Before Width: | Height: | Size: 335 B After Width: | Height: | Size: 284 B |
Before Width: | Height: | Size: 485 B After Width: | Height: | Size: 400 B |
Before Width: | Height: | Size: 573 B After Width: | Height: | Size: 488 B |
Before Width: | Height: | Size: 193 B After Width: | Height: | Size: 165 B |
|
@ -15,15 +15,15 @@ namespace Bit.App.Repositories
|
||||||
|
|
||||||
public Task<IEnumerable<CipherData>> GetAllByUserIdAsync(string userId)
|
public Task<IEnumerable<CipherData>> GetAllByUserIdAsync(string userId)
|
||||||
{
|
{
|
||||||
var logins = Connection.Table<CipherData>().Where(l => l.UserId == userId).Cast<CipherData>();
|
var ciphers = Connection.Table<CipherData>().Where(l => l.UserId == userId).Cast<CipherData>();
|
||||||
return Task.FromResult(logins);
|
return Task.FromResult(ciphers);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task<IEnumerable<CipherData>> GetAllByUserIdAsync(string userId, bool favorite)
|
public Task<IEnumerable<CipherData>> GetAllByUserIdAsync(string userId, bool favorite)
|
||||||
{
|
{
|
||||||
var logins = Connection.Table<CipherData>().Where(l => l.UserId == userId && l.Favorite == favorite)
|
var ciphers = Connection.Table<CipherData>().Where(l => l.UserId == userId && l.Favorite == favorite)
|
||||||
.Cast<CipherData>();
|
.Cast<CipherData>();
|
||||||
return Task.FromResult(logins);
|
return Task.FromResult(ciphers);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|