Track check for updates.

This commit is contained in:
Adam Treat
2023-04-27 07:41:23 -04:00
parent b19d2f2c21
commit 386ce08fca
3 changed files with 10 additions and 0 deletions

View File

@@ -174,6 +174,13 @@ void Network::sendShutdown()
sendMixpanelEvent("shutdown");
}
void Network::sendCheckForUpdates()
{
if (!m_isOptIn)
return;
sendMixpanelEvent("check_for_updates");
}
void Network::sendMixpanelEvent(const QString &ev)
{
if (!m_isOptIn)