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