ClipCascade icon indicating copy to clipboard operation
ClipCascade copied to clipboard

The problem with the Android connection

Open syd45 opened this issue 5 months ago • 3 comments

1

Image

2

Image

Both of these issues appear in version 3.1 (the clients on the server are all 3.1 and the connections are normal), and the second one occurs frequently.

syd45 avatar Aug 26 '25 04:08 syd45

I just installed it and am also getting no set cookie on my android

ctgschollar avatar Aug 28 '25 16:08 ctgschollar

I had to add this to my server environment

      # Tell the app it's behind a proxy using HTTPS
      - SERVER_FORWARD_HEADERS_STRATEGY=framework     # Spring ≥2.6
      # (If you're on older Spring, also add: SERVER_USE_FORWARD_HEADERS=true)

      # Force secure cookie + modern SameSite
      - SERVER_SERVLET_SESSION_COOKIE_SECURE=true
      - SERVER_SERVLET_SESSION_COOKIE_SAME-SITE=None  # or Lax if no cross-site needs

I am running clipcascade behind traefik reverse proxy which is handling my https termination.

It's working for me now

ctgschollar avatar Aug 28 '25 16:08 ctgschollar

Thank you, same problem! This fixed it.

HeapCreep avatar Sep 30 '25 01:09 HeapCreep