Added error code to the toast

This commit is contained in:
max-klaus 2020-10-06 13:10:45 +03:00
parent 3e5d5a71e1
commit 762b1b0692

View file

@ -85,7 +85,7 @@ public class ExceptionHandle {
return SOLVED;
default:
// handle other error scenarios
showToast(activity, "Order unknown error!");
showToast(activity, "Order unknown error (" + iapApiException.getStatusCode() + ")");
return SOLVED;
}
} else {