adding Cod4 support (for steam GUID is truncated to 16 characters)

exit properly whoops
add all linked accounts to drop down
consolidate linked admin accounts to the most recently seen one
limited some waits to 5s to hopefully prevent a rare thread lock
This commit is contained in:
RaidMax
2018-05-14 12:55:10 -05:00
parent 6e5501b32d
commit 699c19cd4b
30 changed files with 184 additions and 132 deletions

View File

@ -6,7 +6,7 @@
}
<div class="col-12 col-md-8 d-none d-md-block">
@{
for (int i = 0; i < Model.ChatHistory.Length; i++)
for (int i = 0; i < Model.ChatHistory.Count; i++)
{
string message = @Model.ChatHistory[i].Message;
if (Model.ChatHistory[i].Message == "CONNECTED")
@ -47,13 +47,13 @@
</div>
</div>
</div>
@if (Model.ChatHistory.Length > 0)
@if (Model.ChatHistory.Count > 0)
{
<div class="w-100 border-bottom d-md-none d-block mt-1 mb-1"></div>
}
<div class="col-12 col-md-8 d-md-none d-block text-left">
@{
for (int i = 0; i < Model.ChatHistory.Length; i++)
for (int i = 0; i < Model.ChatHistory.Count; i++)
{
string message = @Model.ChatHistory[i].Message;
if (Model.ChatHistory[i].Message == "CONNECTED")

View File

@ -3,7 +3,6 @@
@{
Layout = null;
ViewBag.Description += Model.Name + ", ";
}
<div class="row server-header" id="server_header_@Model.ID">