1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Install 64bit updates on Win64, not 32bit

Yes, that sounds like a thing we migth want to do...

Fixes #1227, fixes #1072
This commit is contained in:
tux3 2015-02-19 22:46:28 +01:00
parent 9c807f2da8
commit 302ede28b3
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -35,7 +35,11 @@
#endif
#ifdef Q_OS_WIN
#ifdef Q_OS_WIN64
const QString AutoUpdater::platform = "win64";
#else
const QString AutoUpdater::platform = "win32";
#endif
const QString AutoUpdater::updaterBin = "qtox-updater.exe";
const QString AutoUpdater::updateServer = "https://s3.amazonaws.com/qtox-updater";