bugfix
This commit is contained in:
parent
f51e3fe13a
commit
da8ef2f113
@ -16,6 +16,7 @@ using BreCalClient.misc.Client;
|
||||
using BreCalClient.misc.Model;
|
||||
|
||||
using static BreCalClient.Extensions;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace BreCalClient
|
||||
{
|
||||
@ -295,12 +296,17 @@ namespace BreCalClient
|
||||
}));
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
{
|
||||
this.Dispatcher.Invoke(new Action(() =>
|
||||
{
|
||||
labelGeneralStatus.Text = $"Connection {ConnectionStatus.FAILED}";
|
||||
labelStatusBar.Text = ex.Message;
|
||||
}));
|
||||
|
||||
if (ex.Message.Contains("access", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
this.RefreshToken(null);
|
||||
}
|
||||
}
|
||||
|
||||
if (shipcalls != null)
|
||||
|
||||
@ -82,6 +82,10 @@ def PostShipcalls(schemaModel):
|
||||
continue
|
||||
if key == "modified":
|
||||
continue
|
||||
if key == "evaluation":
|
||||
continue
|
||||
if key == "evaluation_message":
|
||||
continue
|
||||
if isNotFirst:
|
||||
query += ","
|
||||
isNotFirst = True
|
||||
|
||||
Reference in New Issue
Block a user