Ignore:
Timestamp:
Jul 21, 2015, 9:51:32 PM (9 years ago)
Author:
alloc
Message:

Fixes intermediate state

Location:
binary-improvements/MapRendering/Web/Handlers
Files:
1 added
1 moved

Legend:

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

    r242 r244  
    77using UnityEngine;
    88
    9 namespace AllocsFixes.NetConnections.Servers.Web
     9namespace AllocsFixes.NetConnections.Servers.Web.Handlers
    1010{
    1111        public class ItemIconHandler : PathHandler
     
    1616                private bool loaded = false;
    1717
    18                 public ItemIconHandler (string staticPart, bool logMissingFiles) {
     18                public ItemIconHandler (string staticPart, bool logMissingFiles, string moduleName = null) : base(moduleName) {
    1919                        this.staticPart = staticPart;
    2020                        this.logMissingFiles = logMissingFiles;
    2121                }
    2222
    23                 public override void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, HttpListenerBasicIdentity user) {
     23                public override void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, WebConnection user, int permissionLevel) {
    2424                        if (!loaded) {
    2525                                if (!LoadIcons ()) {
Note: See TracChangeset for help on using the changeset viewer.