Sam Hulick

Results 191 comments of Sam Hulick

@hug963 I noticed from #1696 that you merged a fix, but the bug appears to be back. We repeatedly see this error come up, and it appears to be when...

Hey @sampotts, just wanted to put this issue on your radar again. We're still facing this, but it seems non-critical so I'm ready to ignore it in Sentry. I wanted...

@regiside Thanks for this! It was a huge help. PS: Safari is the worst.

Just weighing in here: I think it's a crutch for prettier to format code like this: ```js if (x || (y && z)) { } ``` Programmers should know that...

I totally get these points, and I think they’re valid. But it seems like more ESLint’s territory, not Prettier’s. As I understand it, Prettier is concerned with formatting, ESLint is...

Can any of the maintainers look at this? @JoshStrobl

I've noticed other TS issues with regards to this library. For instance, putting the `validations` object on your Vue component results in a type error. `this.$v` is shown as type...

Hey @ThomasAribart, thanks for the reply! You'll have to excuse me, as my TypeScript ability is passable at best. ```ts type Event = ValidatedAPIGatewayProxyEvent; ``` This results in an error,...

Thanks, Thomas! I appreciate the help, but unfortunately, I don't have the bandwidth to try to track down what's going on. I'm guessing it's due to some sloppy TypeScript that...

The best way I can think of to handle this is essentially what the HLS demo does: ```js // inside the error event handler if (data.type === Hls.ErrorTypes.MEDIA_ERROR) { this.handleMediaError();...