mirror of
https://github.com/bitwarden/mobile
synced 2026-01-09 20:13:18 +00:00
[PM-5461] Fix item saving with blank URI (#2948)
* PM-5461 Fix item saving with blank URI * PM-5461 Fix PR comment
This commit is contained in:
@@ -1146,7 +1146,7 @@ namespace Bit.Core.Services
|
||||
if (model.Login.Uris != null)
|
||||
{
|
||||
cipher.Login.Uris = new List<LoginUri>();
|
||||
foreach (var uri in model.Login.Uris)
|
||||
foreach (var uri in model.Login.Uris.Where(u => u.Uri != null))
|
||||
{
|
||||
var loginUri = new LoginUri
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user