Bump the version number in configure.ac to 1.0.5
[moonshot-ui.git] / src / moonshot-identities-manager.vala
index 06f7ef6..a11e726 100644 (file)
@@ -182,7 +182,7 @@ public class IdentityManagerModel : Object {
 
         bool found = false;
         foreach (IdCard id_card in card_list) {
-            logger.trace(@"load_id_cards: Loading card with display name '$(id_card.display_name)'");
+            logger.trace(@"load_id_cards: Loading card with display name '$(id_card.display_name)' and nai '$(id_card.nai)'");
 
             //!!TODO: This uniqueness check really belongs somewhere else -- like where we add
             // IDs, and/or read them from storage. However, we should never hit this.
@@ -210,7 +210,7 @@ public class IdentityManagerModel : Object {
     }
 
 
-    public IdCard? find_id_card(string nai, bool force_flat_file_store) {
+    public IdCard? find_id_card(string? nai, bool force_flat_file_store) {
         IdCard? retval = null;
         IIdentityCardStore.StoreType saved_store_type = get_store_type();
         if (force_flat_file_store)