en envoyant un pv

This commit is contained in:
Paul Schneider 2016-10-30 02:47:58 +02:00
commit 140667adc6
5 changed files with 120 additions and 65 deletions

View file

@ -138,7 +138,7 @@ namespace BookAStar
{
ViewFactory.EnableCache = true;
ViewFactory.Register<ChatPage, ChatViewModel>(
r=> new ChatViewModel { UserName = MainSettings.UserName }
r=> new ChatViewModel { ChatUser = MainSettings.UserName }
);
ViewFactory.Register<DashboardPage, DashboardViewModel>(
resolver => new DashboardViewModel());
@ -304,8 +304,8 @@ namespace BookAStar
// TODO log in debug binaries
}
private IHubProxy chatHubProxy = null;
public IHubProxy ChatHubProxy
private static IHubProxy chatHubProxy = null;
public static IHubProxy ChatHubProxy
{
get
{