ability to retrieve all tags
This commit is contained in:
@@ -46,7 +46,7 @@ namespace PocketSharp.Silverlight
|
||||
|
||||
try
|
||||
{
|
||||
items = await client.Retrieve();
|
||||
items = await client.Get();
|
||||
|
||||
items.ForEach(item =>
|
||||
{
|
||||
|
||||
@@ -75,7 +75,7 @@ namespace PocketSharp.WP8.ViewModels
|
||||
|
||||
try
|
||||
{
|
||||
items = await client.Retrieve().ConfigureAwait(false);
|
||||
items = await client.Get().ConfigureAwait(false);
|
||||
|
||||
items.ForEach(item =>
|
||||
{
|
||||
|
||||
@@ -42,7 +42,7 @@ namespace PocketSharp.Wpf
|
||||
|
||||
try
|
||||
{
|
||||
items = await client.Retrieve();
|
||||
items = await client.Get();
|
||||
|
||||
items.ForEach(item =>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user