Goestav

Results 12 comments of Goestav

Something is wrong with the values of the **NetflixId** and **SecureNetflixId** cookies. Just changed them to the cookie values I get from opening in a new tab and I got...

Just found out the Multi-Account Containers extension was causing the problem :/ Enabling the cookie permissions option didn't change anything for me, but opening the extension page in the same...

@alexanderadam, is the traktflix logo not showing up for you? It only pops up when you're on [Netflix](https://www.netflix.com). It should show in the address bar ![image](https://user-images.githubusercontent.com/27970303/98244843-f6f0c980-1f67-11eb-9795-e0e14d735ab3.png)

Open the extension page (`moz-extension://` url) in the same container by default if you always use the same one. The options button goes to a blank page for some reason...

There is a scrollbar, it's just hidden by default unless I scroll for me 🙂

I'm currently using this to infer the types automatically, but this should be handled by the library itself imo. ```ts /** A point on the globe. */ interface Point {...

I ran into the same issue when I followed the [docker guide](https://github.com/FreshRSS/FreshRSS/blob/edge/Docker/README.md#hosted-in-a-subdirectory) for Nginx I got it resolved by making the `Location` header redirect with [proxy_redirect](https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_redirect): ```diff - proxy_redirect off;...

Apologies, that was supposed to be ignored only if this feature is enabled. ```diff - if watched && preferences.watch_history + if watched && preferences.watch_history && !preferences.mark_watched_after_duration Invidious::Database::Users.mark_watched(user.as(User), id) end ```...

I think this PR is ready now, I implemented @SamantazFox's suggestion. I can rebase if necessary.