Ian Cox
Ian Cox
Here you go ``` [Test] public void Should_Use_Post_With_Many_Keys() { //this test ensures that request with lots of keys still work //it should switch from get to post var db =...
And here is a fix, though I'm not 100% happy with it ``` internal bool isAtKeysSizeLimit { get { if (Keys == null) return false; var keyString = new string(Keys.SelectMany(k...
I've committed it in my fork https://github.com/Ian1971/LoveSeat/commit/71fb36e66736daeecff1cf6c1d7d14ced0eebe45 If you prefer a pull request I can create one.
Actually, just had a go and can't work out how to include a single commit in a pull request as it tries to add in a bunch of my other...
Well, github pull request interface confused me a bit, it seems to have added the pull request into an old pull request I made a while ago. Not sure what...