diff options
| author | Silarn <jrim@rimpo.org> | 2018-08-20 18:34:31 -0500 |
|---|---|---|
| committer | Silarn <jrim@rimpo.org> | 2019-02-18 21:26:44 -0600 |
| commit | 9fe2f6126dc7b9396d188b57ccb097f0035f57b7 (patch) | |
| tree | dfb6038767f55238506122682b644ac86415050b /src/main.cpp | |
| parent | bd9cc6254c8ded2f726e2b001a4ecf61ac0e5a1d (diff) | |
Initial Nexus API changes:
- Switch to SSO with WebSocket
- Update endpoints (all but version checking)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 275845e2..631ec5b5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -621,7 +621,10 @@ int runApplication(MOApplication &application, SingleInstance &instance, splash.show();
splash.activateWindow();
- NexusInterface::instance(&pluginContainer)->getAccessManager()->startLoginCheck();
+ QString apiKey;
+ if (organizer.settings().getNexusApiKey(apiKey)) {
+ NexusInterface::instance(&pluginContainer)->getAccessManager()->apiCheck(apiKey);
+ }
qDebug("initializing tutorials");
TutorialManager::init(
|
