Philipp C. Heckel

Results 281 comments of Philipp C. Heckel

I am closing this in favor of #346, which is (essentially) a duplicate. @nimbleghost is working on this right now.

Believe me I tried. iOS was fighting me hard :-D

Awesome. Thanks. I'll likely submit myself. It doesn't look like it needs to be updated often

I tested locally in Firefox by going to `about:debugging#/runtime/this-firefox` and clicking "Load temporary extension", and it seems that the notifications do not work. I even added `"permissions": ["notifications"]` to the...

Maybe it's the new duration parsing logic 😬 -- I can check later. Obviously though attachments will not outlive their messages. So cache-duration has to be as high as the...

Reference - @Bnyro implemented this here: https://github.com/binwiederhier/ntfy-android/pull/56

You don't really need the Content-Length header at all. Here's an example with `nc`: ``` $ echo -e "POST /mytopic1 HTTP/1.1\r\nHost: ntfy.sh\r\nConnection: close\r\n\r\nTest with netcat" | nc -v ntfy.sh 80...

My apologies. That's crazy. I guess I've never sent a raw HTTP request... I think we'll have to update all examples though not just this one.

A theory: I think it's this: - ensureUser() checks if v.User() is nil -> not nil - Some other request does v.SetUser(nil) // in visitor() - When the request gets...