mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-30 08:33:19 +01:00
Merge branch 'master' into dev
This commit is contained in:
@@ -266,8 +266,10 @@ namespace Tgstation.Server.Host.Components.Chat.Providers
|
||||
})
|
||||
.ConfigureAwait(false);
|
||||
}
|
||||
catch (Exception e) when (!(e is OperationCanceledException))
|
||||
catch (Exception e)
|
||||
{
|
||||
if (e is OperationCanceledException)
|
||||
cancellationToken.ThrowIfCancellationRequested();
|
||||
Logger.LogWarning(e, "Error sending discord message!");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -370,7 +370,8 @@ namespace Tgstation.Server.Host.Components.Session
|
||||
await chat.SendMessage(
|
||||
parameters.ChatMessage.Text,
|
||||
parameters.ChatMessage.ChannelIds.Select(UInt64.Parse),
|
||||
cancellationToken).ConfigureAwait(false);
|
||||
cancellationToken)
|
||||
.ConfigureAwait(false);
|
||||
break;
|
||||
case BridgeCommandType.Prime:
|
||||
var oldPrimeTcs = primeTcs;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
/world/New()
|
||||
log << "About to call TgsNew()"
|
||||
sleep_offline = FALSE
|
||||
TgsNew(minimum_required_security_level = TGS_SECURITY_SAFE)
|
||||
log << "About to call StartAsync()"
|
||||
StartAsync()
|
||||
|
||||
Reference in New Issue
Block a user