Colin Sheaff
Colin Sheaff
After experimenting with this for a while it's clear that the `AllViewer` policy is not a solution as it results in 403: forbidden responses directly from the CF distribution. However,...
Seconding this. For accessibility reasons it's really important to have alt text for images, and adding a default field to support is only a good thing.
I was in the same situation, but I found a very easy work-around. In `routes/web.php`, do *not* use the `auth:sanctum` middleware, just `auth`, e.g.: ```php Route::middleware([ 'auth', config('jetstream.auth_session'), 'verified', ])->group(function...
@omitobi perfect! This worked! Or at least, I'm getting a different error back now. Firebase is now saying "Remote site returned 5xxx for oidc.mysite CODE_EXCHANGE". I'm going to dig through...
I resolved the 5xx error - that was a silly mistake of mine. But Firebase continues to return 'Unable to parse the ID Token.' The only field that the Google...
Very noticeable in mkvs with the following settings: Codec H264 Bitrate 10163 kbps Bit Depth 8 Chroma Location topleft Chroma Subsampling 4:2:0 Coded Height 816 Coded Width 1920 Color Primaries...
Vertical artifacts very apparent in the suit in foreground on right half of the screen. ## HW Decoding on  ## HW...
This also affects downstream test packages like Dusk. https://github.com/laravel/dusk/issues/1063
I'm not sure this is related, but I'm very frustrated right now since I'm trying to use Laravel's `response()->streamDownload()` function to force the file download of a csv report file....
I forgot to mention that I discovered that the current version of Bref *CAN* stream responses, at least using Livewire's `response()->streamDownload()` function (v2). Not sure why it works with this...