m33ts4k0z

Results 31 comments of m33ts4k0z

The server reports that its a direct stream. However some videos do look a bit pixelated on the web. The platform-specific clients dont seem to suffer from this issue though

@jakjr Please add a pull request with this fix to the repo so it can get baked into the source.

Hi, Can you please add a pull request with this fix to the repo?

Thanks for you answer I will pass the DST as a data value and I will use it on my controller in order to determine the continent of the airport....

Change the code to this: ``` if($user = Sentinel::authenticate($request->only('email', 'password'))) { return redirect('/'); } else { return redirect()->back(); } ```

@driesvints Hello, The query returns the same wrong result: `[2022-08-11 09:39:51] local.DEBUG: {"id":2055,"artnr":"102577-01",...` The type is VARCHAR UNIQUE and NULL is allowed. I believe something is wrong with either the...

@driesvints Yeah the problem was indeed the variable type. I got to cast the artnr to string and got the expected results: ```php Accessory::updateOrCreate(['artnr' => (string)$accessory['artnr']], [ 'title' => $accessory['title'],...

Its actually the tube version. Interesting. I wanted to get the pro version but it wasn't available at my country at the time and since the only difference was the...

Hello, I didnt solve it. I just installed websockets v1 on laravel 8 by forcing package downgrade

Hello, Laravel 8 and websockets v1 work pretty well but indeed a downgrade of some packages is needed. Deleting the composer.lock and running the following command will make websockets work...