| 369 | } |
| 370 | |
| 371 | void AutoUpdaterDialog::queueGetChanges() |
| 372 | { |
| 373 | if (!isSupported() || !ensureHttpReady()) |
| 374 | return; |
| 375 | |
| 376 | m_http->CreateRequest(QStringLiteral(CHANGES_URL).arg(BuildVersion::GitHash).arg(m_latest_version).toStdString(), |
| 377 | std::bind(&AutoUpdaterDialog::getChangesComplete, this, std::placeholders::_1, std::placeholders::_3)); |
| 378 | } |
| 379 | |
| 380 | void AutoUpdaterDialog::getChangesComplete(s32 status_code, std::vector<u8> data) |
| 381 | { |
nothing calls this directly
no test coverage detected