Closed remmerw closed 5 years ago
The class Config in IPFS contains a function
public String get(String key) throws IOException
which should return an Object instead of a a String -> public Object get(String key) throws IOException
because some of the return values are Boolean or Integer.
e.g. ipfs.config.get("Discovery.MDNS.Interval") -> returns an integer
-> tested with 0.4.18
Thanks for the bug report. This is fixed in master now.
The class Config in IPFS contains a function
public String get(String key) throws IOException
which should return an Object instead of a a String -> public Object get(String key) throws IOException
because some of the return values are Boolean or Integer.
e.g. ipfs.config.get("Discovery.MDNS.Interval") -> returns an integer
-> tested with 0.4.18