X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresession.cpp;h=dcc5641f1d60e373e6b2c65f42e67a14e74baaa3;hp=bf542c2a6153e4ab728df7b4f9c6d116489b8d99;hb=e3198912416b2e4ed3708d66953fd6f4928a2382;hpb=a7f5d6a23f7214b11f6db85346a67fd7d02767da diff --git a/src/core/coresession.cpp b/src/core/coresession.cpp index bf542c2a..dcc5641f 100644 --- a/src/core/coresession.cpp +++ b/src/core/coresession.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel IRC Development Team * + * Copyright (C) 2005-07 by the Quassel IRC Team * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -102,6 +102,10 @@ QVariant CoreSession::retrieveSessionData(const QString &key, const QVariant &de // FIXME switch to NetworkIDs void CoreSession::connectToNetwork(QString network) { uint networkid = getNetworkId(network); + if(networkid == 0) { + qWarning() << "unable to connect to Network" << network << "(User:" << userId() << "): unable to determine NetworkId"; + return; + } if(!servers.contains(networkid)) { Server *server = new Server(userId(), networkid, network); servers[networkid] = server;