Eric Lindsey

Results 12 comments of Eric Lindsey

In that case might I suggest changing the signature of: func (s *Session) MessageReactionRemove(channelID, messageID, emojiID, userID string) error to: func (s *Session) MessageReactionRemove(channelID, messageID, emojiAPIName, userID string) error to...

I had the same problem, and adding the `--address` parameter did solve it for me.

My server (vanilla Debian install) resolves `localhost` without a problem, but that wasn't the issue for me. The `--address` parameter is necessary if you want to test from the network...

Okay and this makes sense, because if it wasn't listening on all interfaces then I never could have gotten the "Invalid Host header" message in the first place (it would...

Interestingly, *without* the `--address` parameter, I get the following (snipped) output: > Local: http://localhost:8100 > External: http://50.192.28.253:8100 > DevApp: Blitz@8100 on blitz so this might lead me to believe that...

I agree with what you've said there. I think there's more at play, as well (although I'm new to Ionic so I may be wrong). If I do `ionic start...

@davidfrahm using a hostname will only work if the hostname is resolvable at the server and the client, which can be complicated if you're not testing locally. But here are...

The option to turn it on/off already exists in PogoLocationFeeder...do we need/want a redundant one here?

With your modifications in `websocket-sharp/HttpBase.cs`, `timeout` is never assigned to and will always have its initial value `false`. You could remove the variable and the conditional that checks the variable.

I'd love to experiment with the performance of this library vs. Leaflet, but my application is for a game and so currently uses Leaflet's `CRS.Simple`. Support for non-Earthlike CRS would...