Skip to content

Commit

Permalink
get items fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTravelingTrainer committed Aug 1, 2016
1 parent 08fc77e commit 3e84fc7
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 3e84fc7

Please sign in to comment.