Skip to content

Commit 3c3a91a

Browse files
committed
Reportabug now uses OpenURL instead of backgroundDownload
1 parent cabe02c commit 3c3a91a

1 file changed

Lines changed: 14 additions & 9 deletions

File tree

framework/async/AsyncClient.cpp

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1916,19 +1916,24 @@ void idAsyncClient::PacifierUpdate( void ) {
19161916

19171917
void idAsyncClient::SendBugreport(const char *text)
19181918
{
1919+
19191920
//common->Printf("hi hi\n");
1920-
//sys->OpenURL( "http://blendogames.com/qc/reportabug.php", false );
1921+
1922+
//BC 4-28-2026 fall back to OpenURL, as the nicer backgroundDownload isn't working for some reason.
1923+
sys->OpenURL(va("http://blendogames.com/qc/reportabug.php?text=%s", text) , false );
1924+
1925+
19211926

19221927
//bc use doom3's file download system to send qc bug reports.
19231928

1924-
backgroundDownload.completed = false;
1925-
backgroundDownload.opcode = DLTYPE_URL;
1926-
backgroundDownload.f = NULL;
1927-
backgroundDownload.url.status = DL_WAIT;
1928-
backgroundDownload.url.dlnow = 0;
1929-
backgroundDownload.url.dltotal = 0;
1930-
backgroundDownload.url.url = va("http://blendogames.com/qc/reportabug.php?text=%s", text);
1931-
fileSystem->BackgroundDownload( &backgroundDownload );
1929+
//backgroundDownload.completed = false;
1930+
//backgroundDownload.opcode = DLTYPE_URL;
1931+
//backgroundDownload.f = NULL;
1932+
//backgroundDownload.url.status = DL_WAIT;
1933+
//backgroundDownload.url.dlnow = 0;
1934+
//backgroundDownload.url.dltotal = 0;
1935+
//backgroundDownload.url.url = va("http://blendogames.com/qc/reportabug.php?text=%s", text);
1936+
//fileSystem->BackgroundDownload( &backgroundDownload );
19321937
}
19331938

19341939
/*

0 commit comments

Comments
 (0)