Skype backend: do not force exit when user logged out (fixes crash)

This commit is contained in:
vitalyster 2013-12-13 00:25:30 +03:00
parent 51746c5af7
commit 02ac300e5e

View file

@ -150,9 +150,9 @@ void SkypePlugin::handleLogoutRequest(const std::string &user, const std::string
if (skype) {
LOG4CXX_INFO(logger, "User wants to logout, logging out");
skype->logout();
Logging::shutdownLogging();
google::protobuf::ShutdownProtobufLibrary();
exit(1);
//Logging::shutdownLogging();
//google::protobuf::ShutdownProtobufLibrary();
//exit(1);
}
}