Sczlog

Results 7 comments of Sczlog

I am facing the same issue and I use `memfs` to create a in-memory file then send it, it seems work well.

@styfle It work well when I write the code directly, just like you mentioned, but if the code is from a dependency it become what i have write, I am...

Find myself a workaround, use `mime/multipart` to create body, set raw body and content-type will keep the order. ``` var bBody bytes.Buffer writer := multipart.NewWriter(&bBody) writer.WriteField("firstkey","firstvalue") writer.WriteField("secondkey","secondvalue") part, err :=...

@KirillTertunov that was assertionConsumerService not AttributeConsumingService, are they the same?

you should check https://github.com/tngan/samlify/blob/43ac2964dc61af4d8710342107c16c65f32c9bf6/src/metadata-sp.ts#L63-L69 they are different properties

I am facing the same problem, after selecting some thing and scroll selected text out of view, there will be some mask over the first line make content not visible...

A temporally solution with mutation observer, I use tampermonkey to host it. ```javascript const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { if (mutation.removedNodes.length) { mutation.removedNodes.forEach((node) => { if...