WIP profile UX

This commit is contained in:
Paul Schneider 2016-11-21 23:43:57 +01:00
commit 2bb55330c2
5 changed files with 26 additions and 11 deletions

View file

@ -85,8 +85,7 @@ namespace Yavsc.Helpers
public async Task<JsonValue> InvokeJson(object query)
{
JsonValue jsonDoc = null;
try
{
using (Stream streamQuery = request.GetRequestStream())
{
using (StreamWriter writer = new StreamWriter(streamQuery))
@ -102,7 +101,9 @@ namespace Yavsc.Helpers
jsonDoc = await Task.Run(() => JsonObject.Load(stream));
}
response.Close();
}
}
try
{
}
catch (WebException ex)
{