Malte Nottmeyer

Results 4 comments of Malte Nottmeyer

FYI: This problem still persists in the current version. (`1.2.9`) Creating a similar resource to `new-classpath-resource` with a direct creation of `io/resource` did the trick for me, e.g. `(io/resource (str...

@regulskimichal would be great to have this, if you can spare the time fixing the remarks

@ueman Hi Jonas, would this be a valid approach? Any concerns? ```dart class ErrorMessageRewritingInterceptor extends Interceptor { @override void onError(DioException err, ErrorInterceptorHandler handler) { final errWithHelpfulMessage = err.copyWith(message: ''); super.onError(errWithHelpfulMessage,...

We are forced to use 3.20.3 (where this bug is still present) because of https://github.com/protocolbuffers/protobuf-javascript/issues/127, but were able to workaround this via ``` // @ts-ignore globalThis.window = null; // @ts-ignore...