Henrik Nyh
Henrik Nyh
I'm seeing this as well. Looks like it's possibly for any request with URL encoded Latin-1 in it, e.g. ``` cache error: invalid byte sequence in UTF-8 … cache: [GET...
Okay, I ended up doing this for now. Admittedly a kludge (and only for Ruby 1.9): ``` # Make Rack::Cache not break on Latin-1 query params. # https://github.com/rtomayko/rack-cache/issues/47 class Rack::Cache::Key...
To use this fork until/if it's merged: ``` gem "facebookbusiness", github: "barsoom/facebook-ruby-business-sdk", branch: "support-countries-5" ```
Any updates, please? This gem is currently the one thing preventing us from updating `countries` to 5 (so the next major after what this PR allows) – that one does...
@niels Good point. I've now [made a PR](https://github.com/facebook/facebook-ruby-business-sdk/pull/180) for supporting countries 5 and thus requiring Ruby 2.7. We can then use that fork in our app until/if Facebook want to...
I think @inkarkat means ``` :nmap ci,w ci,e ``` for the second line. Also: cool. I've been annoyed by this but not quite aware of why. Will try those mappings.
This won't fix things like `c2,w` of course, but I'll take what I can get.
I've used the suggested mappings since my last comment; haven't had any problems.
@maylortaylor We have an "Foo Company Integrations" GitHub account that we use for stuff like this. So it would have the "personal" token, and all devs have access to this...
I'm sure you're aware, but as a workaround, you can change the window size, e.g. ``` Capybara.register_driver :apparition do |app| Capybara::Apparition::Driver.new(app, … window_size: [1024, 12345], ) end ``` To be...