mirror of
https://github.com/sheumann/DiskBrowser.git
synced 2026-04-19 18:16:36 +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:
+3
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user