Amith Mohanan

Results 24 comments of Amith Mohanan

@lucacasonato I'm even getting notified of bot comments on my commit when it is in a **fork** repository, as I am the author. deploy-bot comments on commits is bad idea....

@ignoramous Have enabled HSTS on `rethinkdns.com` and subdomains. It works! For `http://max.rethinkdns.com`, response is: ``` HTTP/1.1 307 Internal Redirect Location: https://max.rethinkdns.com/ Non-Authoritative-Reason: HSTS ``` (In the browser only; not via...

@ignoramous HSTS redirect to `https` from `http` only works when browser knows of HSTS on the domain. To Reproduce, try opening `http://max.rethinkdns.com/` from Incognito Window in Chrome, no redirects to...

@ignoramous No, DoH clients weren't my concern. `https` upgrade is needed for when someone would paste in a DoT hostname like `1-EAABAAA.max.rethinkdns.com` in the browser and by default (in most...

@shuvashish76 some of them were removed here: 9b7c9d07811a90754412a651947c81759eb6b5e7

I'm using v0.24.0 This is not resolved for me: ![image](https://user-images.githubusercontent.com/7036770/94595926-0b76dd80-02a9-11eb-8b3f-50116db41263.png) Edit: I see that the fix done in the PR above is to add `--no-sandbox` to desktop file. But this...

> I'm using v0.24.0 > > This is not resolved for me: ![image](https://user-images.githubusercontent.com/7036770/94595926-0b76dd80-02a9-11eb-8b3f-50116db41263.png) > > Edit: I see that the fix done in the PR above is to add `--no-sandbox`...

@roldanjr Thank you for the response > You can't exit the full screen feature in every break if you enable the full screen break feature inside the settings tab. As...

`await env.ASSETS.fetch(url);` also returns `[object Response3]`. A workaround I have found: ```js const fRes = await env.ASSETS.fetch(url); return new Response(fRes.body, { headers: fRes.headers, }); ``` @GregBrimble ~~I hope this workaround...