Remove code to check for empty issuer and set to "Issuer" LP 1276627
authorKevin Wasserman <kevin.wasserman@painless-security.com>
Mon, 17 Mar 2014 20:02:55 +0000 (16:02 -0400)
committerKevin Wasserman <kevin.wasserman@painless-security.com>
Mon, 17 Mar 2014 20:02:55 +0000 (16:02 -0400)
This was never correct behavior, but is now completely redundant
since fixing the add identity dialog to require the user to specify
issuer.

src/moonshot-identity-management-view.vala

index bcb0b8e..7ed3886 100644 (file)
@@ -262,8 +262,6 @@ public class IdentityManagerView : Window {
 
         id_card.display_name = dialog.display_name;
         id_card.issuer = dialog.issuer;
-        if (id_card.issuer == "")
-            id_card.issuer = "Issuer";
         id_card.username = dialog.username;
         id_card.password = dialog.password;
         id_card.store_password = dialog.store_password;