Revision 1cc1e8c5 trunk/Pithos.Core/Agents/SnapshotDifferencer.cs

b/trunk/Pithos.Core/Agents/SnapshotDifferencer.cs
184 184
            {
185 185
                return Common.Where(info => 
186 186
                    //The hash is different
187
                    info.PreviousHash != info.Hash 
187
                    info.PreviousHash != info.X_Object_Hash 
188 188
                    //And the Uri is unchanged or there is no previous version
189 189
                    && (info.Previous == null ||  info.Uri == info.Previous.Uri));
190 190
            }
......
195 195
        /// </summary>
196 196
        public IEnumerable<ObjectInfo> Unchanged
197 197
        {
198
            get{ return Common.Where(i => i.PreviousHash == i.Hash);}
198
            get { return Common.Where(i => i.PreviousHash == i.X_Object_Hash); }
199 199
        }
200 200

  
201 201
        /// <summary>

Also available in: Unified diff