Alex

Results 49 comments of Alex

Also having this issue, though the clock fix doesn't appear to work. Reloading resource packs (F3+T or Options > Resource packs > Done) will fix it temporarily, but eventually it...

[Related](https://github.com/webview/webview/issues/1294)

Found another, this time with my mobile provider. It looks like the layout isn't being rendered correctly? 0: ![](https://i.imgur.com/VzydTgX.png) GMail: ![](https://i.imgur.com/Uj6Eza1.png) Visible Payment Email HTML (PII Removed) ```html Payment received,...

Looks like the copy of the HTML from the Google Security email was mangled somehow. Reproducing the real email should be straight-forward enough though :)

Here's my (abridged) dependency pom: ```xml com.oracle.oci.sdk oci-java-sdk-bom 3.39.0 pom import com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey compile com.oracle.oci.sdk oci-java-sdk-core compile com.oracle.oci.sdk oci-java-sdk-containerinstances compile ```

I am able to avoid this issue by disabling the Apache Http Connector: ```java .clientConfigurator(builder -> { builder.property(JerseyClientProperties.USE_APACHE_CONNECTOR, false); }) ```

I am already using 3.39.0. I believe this is a separate issue from 587 :)

> Can you please share the stack trace? Also, which Jersey version are you using? I had setup my own watchdog to kill connections after a few seconds (or minutes,...

Agree, but this is probably difficult to implement. Will think on it though :)

> In my project, `layout.server.ts` has only below options with adapter-static: > > ```ts > export const prerender = true; > export const csr = true; > export const ssr...