Fixes the GCM notification intent

to view the Book query that was notified
This commit is contained in:
Paul Schneider 2017-01-03 13:53:06 +01:00
commit 54b0c2af0d
19 changed files with 193 additions and 133 deletions

View file

@ -251,8 +251,8 @@ namespace BookAStar.Droid
{
Task.Run(async () =>
{
App.ShowBookQuery(
await DataManager.Instance.BookQueries.Get(queryId));
var query = DataManager.Instance.BookQueries.LocalGet(queryId);
App.ShowBookQuery(query);
});
}
}