Skip to content

Commit

Permalink
qc.sentinel1 parameter name changed
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrauzzi committed Jul 2, 2018
1 parent 55aed08 commit 7675967
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,8 @@ static Uri BuildUrl(Uri qcSearchUrl, int count, int index, int page, string type
qs.Set("page", querypage.ToString());

if (!string.IsNullOrEmpty(start))
qs.Set("validity_start_time", string.Format("{0}{1}", start, string.IsNullOrEmpty(stop) ? "" : ".." + stop));
qs.Set("validity_start", string.Format("{0}{1}", start, string.IsNullOrEmpty(stop) ? "" : ".." + stop));

url.Query = qs.ToString();

return url.Uri;
Expand Down

0 comments on commit 7675967

Please sign in to comment.