Ignore:
Timestamp:
Jul 4, 2016, 10:11:51 AM (8 years ago)
Author:
alloc
Message:

No more errors in log when requesting web stuff while server is still booting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/Web.cs

    r282 r286  
    156156                                                cookie.Secure = false;
    157157                                                response.AppendCookie (cookie);
     158                                        }
     159
     160                                        // No game yet -> fail request
     161                                        if (GameManager.Instance.World == null) {
     162                                                response.StatusCode = (int)HttpStatusCode.ServiceUnavailable;
     163                                                return;
    158164                                        }
    159165
Note: See TracChangeset for help on using the changeset viewer.