From e70c346a5b434fd4314378634d8bf367f7ea8c10 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Fri, 3 Mar 2017 00:09:26 +0100 Subject: [PATCH] fixes estimation cache id --- ZicMoove/ZicMoove/Data/DataManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ZicMoove/ZicMoove/Data/DataManager.cs b/ZicMoove/ZicMoove/Data/DataManager.cs index 646e18e7..d182278f 100644 --- a/ZicMoove/ZicMoove/Data/DataManager.cs +++ b/ZicMoove/ZicMoove/Data/DataManager.cs @@ -51,7 +51,7 @@ Blogspot = new RemoteEntity("blog", x=>x.Id); Contacts = new LocalEntity(c => c.UserId); AppState = new LocalEntity(s => s.Position); - EstimationCache = new LocalEntity(e => e.Query.Id); + EstimationCache = new LocalEntity(e => e.Data.Id); EstimateLinesTemplates = new LocalEntity(l => l.Description); PrivateMessages = new LocalEntity(m=> m.GetHashCode()); RemoteFiles = new RemoteFilesEntity ();