Skip to content

Commit

Permalink
Merge pull request NecronomiconCoding#1916 from TheTravelingTrainer/m…
Browse files Browse the repository at this point in the history
…aster

Bug fix and small formatting tidy
  • Loading branch information
BornSupercharged authored Aug 1, 2016
2 parents 30e13dd + 3e84fc7 commit a8ed3f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public GetItemsListHandler()

public async Task Handle(ISession session, WebSocketSession webSocketSession, dynamic message)
{
await GetItemListTask.Execute(session, webSocketSession, message.requestID);
await GetItemListTask.Execute(session, webSocketSession, (string)message.RequestID);
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public void RegisterHandler(string actionName, IWebSocketRequestHandler action)
}
}

public async Task Handle(ISession session, WebSocketSession webSocketSession, dynamic message)
public async Task Handle(ISession session, WebSocketSession webSocketSession, dynamic message)
{
if (_registerdHandlers.ContainsKey((string)message.Command))
{
Expand Down

0 comments on commit a8ed3f0

Please sign in to comment.