You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I click the bookmarklet and type my password, the toolbar does not appear. Hard-refreshing the page makes the toolbar appear.
Digging in to the source, I see that @response.ok? returns false, because the status code is 304 (Not Modified) instead of 200. One way around this I used was to strip "HTTP_IF_NONE_MATCH" from the env before passing on the request, so the etag would not match.
The text was updated successfully, but these errors were encountered:
When I click the bookmarklet and type my password, the toolbar does not appear. Hard-refreshing the page makes the toolbar appear.
Digging in to the source, I see that @response.ok? returns false, because the status code is 304 (Not Modified) instead of 200. One way around this I used was to strip "HTTP_IF_NONE_MATCH" from the env before passing on the request, so the etag would not match.
The text was updated successfully, but these errors were encountered: