Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: awcodes/filament-curator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.6.14
Choose a base ref
...
head repository: awcodes/filament-curator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.6.15
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 12, 2024

  1. Use get method on TemporaryUploadedFile to fix double root issue

    rojtjo committed Dec 12, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    florianduros Florian Duros
    Copy the full SHA
    4fb0880 View commit details

Commits on Dec 28, 2024

  1. Merge pull request #563 from rojtjo/fix/s3-double-root

    Fix double root issue
    awcodes authored Dec 28, 2024
    Copy the full SHA
    22542cf View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/Components/Forms/Uploader.php
2 changes: 1 addition & 1 deletion src/Components/Forms/Uploader.php
Original file line number Diff line number Diff line change
@@ -101,7 +101,7 @@ protected function setUp(): void

if (is_media_resizable($file->getMimeType())) {
if (in_array(config('livewire.temporary_file_upload.disk'), config('curator.cloud_disks')) && config('livewire.temporary_file_upload.directory') !== null) {
$content = Storage::disk($component->getDiskName())->get($file->path());
$content = $file->get();
} else {
$content = $file->getRealPath();
}