1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00

more icons resized on android

This commit is contained in:
Kyle Spearrin 2017-10-27 11:23:29 -04:00
parent 3b235f2ca2
commit a656aa21f8
6 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 B

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 335 B

After

Width:  |  Height:  |  Size: 284 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 485 B

After

Width:  |  Height:  |  Size: 400 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 573 B

After

Width:  |  Height:  |  Size: 488 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 193 B

After

Width:  |  Height:  |  Size: 165 B

View File

@ -15,15 +15,15 @@ namespace Bit.App.Repositories
public Task<IEnumerable<CipherData>> GetAllByUserIdAsync(string userId)
{
var logins = Connection.Table<CipherData>().Where(l => l.UserId == userId).Cast<CipherData>();
return Task.FromResult(logins);
var ciphers = Connection.Table<CipherData>().Where(l => l.UserId == userId).Cast<CipherData>();
return Task.FromResult(ciphers);
}
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>();
return Task.FromResult(logins);
return Task.FromResult(ciphers);
}
}
}