Fixes bug on fetching external Oragnisation and Researchers.
This commit is contained in:
parent
c988d5ab10
commit
2a232b3071
|
@ -220,7 +220,7 @@ public class RemoteFetcher {
|
|||
|
||||
try {
|
||||
|
||||
URL url = new URL(urlString);
|
||||
URL url = new URL(urlString.replace(" ", "%20"));
|
||||
|
||||
HttpURLConnection con = (HttpURLConnection) url.openConnection();
|
||||
con.setRequestMethod("GET");
|
||||
|
|
|
@ -551,6 +551,7 @@
|
|||
<name>'name'</name>
|
||||
<uri>'uri'</uri>
|
||||
<description>'description'</description>
|
||||
<count>'count'</count>
|
||||
</fields>
|
||||
</data>
|
||||
<paginationpath>$['meta']['pagination']['page','pages','count']</paginationpath>
|
||||
|
@ -613,6 +614,7 @@
|
|||
<name>'name'</name>
|
||||
<uri>'uri'</uri>
|
||||
<description>'description'</description>
|
||||
<count>'count'</count>
|
||||
</fields>
|
||||
</data>
|
||||
<paginationpath>$['meta']['pagination']['page','pages','count']</paginationpath>
|
||||
|
|
Loading…
Reference in New Issue