tracker: use iid instead of uid when linking via local ids
authorRaul Gutierrez Segales <rgs@collabora.co.uk>
Wed, 31 Aug 2011 22:03:10 +0000 (23:03 +0100)
committerRaul Gutierrez Segales <rgs@collabora.co.uk>
Wed, 31 Aug 2011 22:03:24 +0000 (23:03 +0100)
backends/tracker/lib/trf-persona.vala

index d1e52bd..0203e92 100644 (file)
@@ -324,9 +324,9 @@ public class Trf.Persona : Folks.Persona,
     {
       get
         {
-          if (this._local_ids.contains (this.uid) == false)
+          if (this._local_ids.contains (this.iid) == false)
             {
-              this._local_ids.add (this.uid);
+              this._local_ids.add (this.iid);
             }
           return this._local_ids_ro;
         }