mirror of
https://github.com/sheumann/DiskBrowser.git
synced 2024-11-21 22:31:13 +00:00
Restore ability to use a blank query to show all disks.
This was broken by the change to parenthesize the query. Now that is done only when the query is not blank.
This commit is contained in:
parent
c7968ecb69
commit
716df24211
@ -79,13 +79,15 @@ void DoSearch(boolean getMore) {
|
||||
|
||||
asprintf(&searchURL,
|
||||
"http://archive.org/advancedsearch.php?"
|
||||
"q=emulator%%3A%s%%20(%s)"
|
||||
"q=emulator%%3A%s%s%s%s"
|
||||
"&fl%%5B%%5D=identifier&fl%%5B%%5D=title"
|
||||
"&fl%%5B%%5D=emulator_ext"
|
||||
"&sort%%5B%%5D=titleSorter+asc"
|
||||
"&rows=%i&page=%i&output=json",
|
||||
gsDisksOnly ? "apple2gs" : "apple2%2A",
|
||||
queryString[0] != '\0' ? "%20(" : "",
|
||||
queryString,
|
||||
queryString[0] != '\0' ? ")" : "",
|
||||
PAGE_SIZE,
|
||||
pageNum + 1);
|
||||
if (searchURL == NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user