-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
This error is triggered when trying to execute any logic by using any IDE(Idea, Eclipse, etc)
E.G. Execute UserInformation.java by using Idea/Eclipse and the following error will be triggered and no logic is being executed.
Caused by: java.lang.NullPointerException
at com.convertapi.client.Http.getRequestBuilder(Http.java:62)
at com.convertapi.client.Param.lambda$upload$1(Param.java:98)
Possible fix:
static Request.Builder getRequestBuilder() {
if (System.console() == null) {
System.out.printf("VERSIJA: %s", Http.class.getPackage().getImplementationVersion());
} else {
System.console().printf("VERSIJA: %s", Http.class.getPackage().getImplementationVersion());
}
String agent = String.format("ConvertAPI-Java/%.1f (%s)", Http.class.getPackage().getImplementationVersion(), System.getProperty("os.name"));
return new Request.Builder().header("User-Agent", agent);
}
Metadata
Metadata
Assignees
Labels
No labels