We recently hit a problem where the same version of the library was loaded twice and decoders were passed from one side to the other. This led to obscure errors because of instanceof checks which don't work as expected when there are several versions of the Ok class.
This PR attempts to address the problem - it's just one way to try tackling it.
We recently hit a problem where the same version of the library was loaded twice and decoders were passed from one side to the other. This led to obscure errors because of
instanceof
checks which don't work as expected when there are several versions of theOk
class.This PR attempts to address the problem - it's just one way to try tackling it.