Skip to content
Snippets Groups Projects
Commit 2a4096c0 authored by Harpo Roeder's avatar Harpo Roeder
Browse files

handle after != null && limit == null case

parent 488e6d8d
No related branches found
No related tags found
1 merge request!2Query Index Changes
......@@ -84,6 +84,8 @@ class ApiMethods {
"/query_index?system=$systemQuery&content_type=$contentType&after=$after&limit=$limit"
} else if (limit != null) {
"/query_index?system=$systemQuery&content_type=$contentType&limit=$limit"
} else if (after != null) {
"/query_index?system=$systemQuery&content_type=$contentType&after=$after"
} else {
"/query_index?system=$systemQuery&content_type=$contentType"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment