diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2011-11-28 17:20:56 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2011-11-28 17:20:56 +0300 |
| commit | 3bc2ad56e901eb95c6f8b673a07e013e6bff6a65 (patch) | |
| tree | 68741215ecd1767d31fa0ed2d207d19ad5e94ebe /src/org/fox/ttrss/ApiRequest.java | |
| parent | 989a904f3dbeb1bb224dfa4f036a7b344ac9051a (diff) | |
properly download feed icons, properly adjust feedsfragment on
preference change
Diffstat (limited to 'src/org/fox/ttrss/ApiRequest.java')
| -rw-r--r-- | src/org/fox/ttrss/ApiRequest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/fox/ttrss/ApiRequest.java b/src/org/fox/ttrss/ApiRequest.java index a27b3dbb..9af9d33f 100644 --- a/src/org/fox/ttrss/ApiRequest.java +++ b/src/org/fox/ttrss/ApiRequest.java @@ -109,7 +109,7 @@ public class ApiRequest extends AsyncTask<HashMap<String,String>, Integer, JsonE InputStream content = execute.getEntity().getContent();
BufferedReader buffer = new BufferedReader(
- new InputStreamReader(content));
+ new InputStreamReader(content), 8192);
String s = "";
String response = "";
|