Create group2sessions.sessionIDs if it doesn't exist yet.

This commit is contained in:
Marcel Klehr 2012-08-09 11:15:26 +02:00
parent aa986ab954
commit d6a0cfc398
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ exports.createSession = function(groupID, authorID, validUntil, callback)
if(ERR(err, callback)) return;
//the entry doesn't exist so far, let's create it
if(group2sessions == null)
if(group2sessions == null || group2sessions.sessionIDs == null)
{
group2sessions = {sessionIDs : {}};
}