MCPcopy Create free account
hub / github.com/Selectively11/CloudRedirect / Backend

Method Backend

ui-linux/src/backend.cpp:81–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81Backend::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
93void Backend::detectSteamPath()
94{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected