Fix bad semi-colons

This commit is contained in:
Dominion
2023-06-03 22:15:06 -04:00
parent f265b4f692
commit 326549c026
@@ -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));
}