mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-27 09:46:50 +03:00
Use performNewNetworkRequest instead of performNetworkRequest
This commit is contained in:
parent
4ad292756e
commit
669f0b6c83
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ public class NotesClient {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Log.v(TAG, "NextcloudRequest: " + nextcloudRequest.toString());
|
Log.v(TAG, "NextcloudRequest: " + nextcloudRequest.toString());
|
||||||
Response response = mNextcloudAPI.performNetworkRequest(nextcloudRequest);
|
Response response = mNextcloudAPI.performNewNetworkRequest(nextcloudRequest);
|
||||||
Log.v(TAG, "NextcloudRequest: " + nextcloudRequest.toString());
|
Log.v(TAG, "NextcloudRequest: " + nextcloudRequest.toString());
|
||||||
BufferedReader rd = new BufferedReader(new InputStreamReader(response.getInputStream()));
|
BufferedReader rd = new BufferedReader(new InputStreamReader(response.getInputStream()));
|
||||||
String line;
|
String line;
|
||||||
|
|
Loading…
Reference in a new issue