From 6dbc8b80b9fee51467e779367dc38e7df997ce38 Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Thu, 8 Jul 2010 08:44:38 +0000 Subject: [PATCH] Slight fix in 'whoisonline' --- Builder/IISMainHandler/build.txt | 2 +- Builder/IISUploadHandler/build.txt | 2 +- IISMainHandler/handlers/response/WhoIsOnlineHandler.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Builder/IISMainHandler/build.txt b/Builder/IISMainHandler/build.txt index a869e99..5628fa7 100644 --- a/Builder/IISMainHandler/build.txt +++ b/Builder/IISMainHandler/build.txt @@ -1 +1 @@ -638 \ No newline at end of file +639 \ No newline at end of file diff --git a/Builder/IISUploadHandler/build.txt b/Builder/IISUploadHandler/build.txt index 3456e74..2291c04 100644 --- a/Builder/IISUploadHandler/build.txt +++ b/Builder/IISUploadHandler/build.txt @@ -1 +1 @@ -372 \ No newline at end of file +373 \ No newline at end of file diff --git a/IISMainHandler/handlers/response/WhoIsOnlineHandler.cs b/IISMainHandler/handlers/response/WhoIsOnlineHandler.cs index d6bc6f6..5aef4a3 100644 --- a/IISMainHandler/handlers/response/WhoIsOnlineHandler.cs +++ b/IISMainHandler/handlers/response/WhoIsOnlineHandler.cs @@ -31,7 +31,7 @@ namespace FLocal.IISHandler.handlers.response { DateTime.Now.Subtract(Config.instance.ActivityThreshold).ToUTCString() ), pageOuter - ) select Session.LoadById(Session.SessionKey.Parse(stringId)); + ) select Session.LoadByKey(stringId); return new XElement[] { new XElement("users", from session in sessions select session.account.user.exportToXmlForViewing(context),