Merge pull request #7384 from zackhow/analytics-fix

Android: fix crash if user is offline
This commit is contained in:
JosJuice 2018-08-29 22:53:43 +02:00 committed by GitHub
commit 215d99146d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -93,8 +93,7 @@ public class Analytics
public static void sendReport(String endpoint, byte[] data) public static void sendReport(String endpoint, byte[] data)
{ {
StringRequest request = new StringRequest(Request.Method.POST, endpoint, StringRequest request = new StringRequest(Request.Method.POST, endpoint,
null, error -> Log.debug("Send Report Failure code: " null, error -> Log.debug("Failed to send report"))
+ error.networkResponse.statusCode))
{ {
@Override @Override
public byte[] getBody() public byte[] getBody()