summaryrefslogtreecommitdiff
path: root/src/organizercore.cpp
diff options
context:
space:
mode:
authorSilarn <jrim@rimpo.org>2019-01-27 03:43:18 -0600
committerSilarn <jrim@rimpo.org>2019-02-18 21:27:32 -0600
commit7de78b6697b60ac20add32b5b9140b04da973be8 (patch)
tree44664f89b93a416cafe39fa5c114ba50cdf81431 /src/organizercore.cpp
parent9fe2f6126dc7b9396d188b57ccb097f0035f57b7 (diff)
Several Nexus API-related changes
* Added 30-second ping so Nexus doesn't close our connection * Set an overall 5 minute timeout before we give up listening for auth * Fixed some old signal and slot connections * Added a button to revoke the current API authorization * Updated bulk endorsement function with new API changes
Diffstat (limited to 'src/organizercore.cpp')
-rw-r--r--src/organizercore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/organizercore.cpp b/src/organizercore.cpp
index dca855c7..bfe36b24 100644
--- a/src/organizercore.cpp
+++ b/src/organizercore.cpp
@@ -307,9 +307,9 @@ OrganizerCore::OrganizerCore(const QSettings &initSettings)
SLOT(removeOrigin(QString)));
connect(NexusInterface::instance(m_PluginContainer)->getAccessManager(),
- SIGNAL(loginSuccessful(bool)), this, SLOT(loginSuccessful(bool)));
+ SIGNAL(validateSuccessful(bool)), this, SLOT(loginSuccessful(bool)));
connect(NexusInterface::instance(m_PluginContainer)->getAccessManager(),
- SIGNAL(loginFailed(QString)), this, SLOT(loginFailed(QString)));
+ SIGNAL(validateFailed(QString)), this, SLOT(loginFailed(QString)));
// This seems awfully imperative
connect(this, SIGNAL(managedGameChanged(MOBase::IPluginGame const *)),