mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-26 22:48:20 +01:00
Fix bad semi-colons
This commit is contained in:
@@ -170,8 +170,7 @@ namespace Tgstation.Server.Host.Controllers
|
||||
.AsQueryable()
|
||||
.Where(x => x.Id == Instance.Id)
|
||||
.Select(x => x.DreamDaemonSettings)
|
||||
.FirstOrDefaultAsync(cancellationToken)
|
||||
;
|
||||
.FirstOrDefaultAsync(cancellationToken);
|
||||
|
||||
if (current == default)
|
||||
return Gone();
|
||||
@@ -182,8 +181,8 @@ namespace Tgstation.Server.Host.Controllers
|
||||
.GetAvailablePort(
|
||||
model.Port.Value,
|
||||
true,
|
||||
cancellationToken)
|
||||
;
|
||||
cancellationToken);
|
||||
|
||||
if (verifiedPort != model.Port)
|
||||
return Conflict(new ErrorMessageResponse(ErrorCode.PortNotAvailable));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user