Restore AccountManager setup

This commit is contained in:
Atlante45 2015-07-17 18:22:35 -07:00
parent 1c965736e8
commit 640171d5bd

View file

@ -34,10 +34,10 @@
const bool VERBOSE_HTTP_REQUEST_DEBUGGING = false; const bool VERBOSE_HTTP_REQUEST_DEBUGGING = false;
AccountManager& AccountManager::getInstance(bool forceReset) { AccountManager& AccountManager::getInstance(bool forceReset) {
static auto sharedInstance = std::make_shared<AccountManager>(); static std::unique_ptr<AccountManager> sharedInstance(new AccountManager());
if (forceReset) { if (forceReset) {
sharedInstance = std::make_shared<AccountManager>(); sharedInstance.reset(new AccountManager());
} }
return *sharedInstance; return *sharedInstance;