mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 14:02:57 +02:00
Always include build date/time in CheckUpdate
This commit is contained in:
@@ -69,9 +69,9 @@ const wxString VerCheckArgs(){
|
||||
|
||||
wxString result = wxString("from_ver=") + AUDACITY_VERSION_STRING;
|
||||
#ifdef REV_LONG
|
||||
wxString timeStr = wxString( __DATE__ ) + wxString( __TIME__ );
|
||||
result += wxString("&ComitId=")+wxString(REV_LONG).Left(6) + "&Time=" + timeStr;
|
||||
result += wxString("&ComitId=")+wxString(REV_LONG).Left(6);
|
||||
#endif
|
||||
result += wxString("&Time=") + wxString( __DATE__ ) + wxString( __TIME__ );
|
||||
result.Replace(" ","");
|
||||
return result;
|
||||
}
|
||||
|
Reference in New Issue
Block a user