[Main] - change the delay to check updates to a day

This commit is contained in:
Cancerous 2020-02-01 14:50:15 -05:00 committed by illusion
parent adca56b122
commit 753d973699
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ namespace update {
// get difference of build/run time in hours
double diff = (difftime(mktime(now), mktime(&t_b)) / 3600.0);
//XELOGI("%f",diff);
if (diff > 1.0) {
if (diff > 24.5) {
//request api response for latest release
wstring answer = SendHTTPSRequest_GET(L"api.github.com",
L"/repos/xenia-canary/xenia-canary/releases/latest", L"");