| 79 | } |
| 80 | |
| 81 | Backend::Backend(QObject *parent) |
| 82 | : QObject(parent), m_nam(new QNetworkAccessManager(this)) |
| 83 | { |
| 84 | detectSteamPath(); |
| 85 | scanStorageForApps(); // Primary source: what's actually synced |
| 86 | loadConfig(); |
| 87 | |
| 88 | // Delay name resolution and remote fetch until event loop is running |
| 89 | QTimer::singleShot(100, this, &Backend::resolveAppNames); |
| 90 | QTimer::singleShot(200, this, &Backend::fetchRemoteApps); |
| 91 | } |
| 92 | |
| 93 | void Backend::detectSteamPath() |
| 94 | { |
nothing calls this directly
no outgoing calls
no test coverage detected