diff options
author | 2022-03-21 19:46:51 +0100 | |
---|---|---|
committer | 2022-03-21 19:46:51 +0100 | |
commit | 25cab0e1f4fdd89512088d0d02c4abd7b4d11773 (patch) | |
tree | d7c306610025eab45d2e3e204f492334c74ae370 /vendor/github.com/superseriousbusiness/exif-terminator/jpeg.go | |
parent | don't error if content property is nil (#436) (diff) | |
download | gotosocial-25cab0e1f4fdd89512088d0d02c4abd7b4d11773.tar.xz |
[bugfix] Fix images not being processed correctly sometimes (#437)
* bump exif-terminator to latest version
* add and test giant turnip from turnip.farm
* don't error if content property is nil
Diffstat (limited to 'vendor/github.com/superseriousbusiness/exif-terminator/jpeg.go')
-rw-r--r-- | vendor/github.com/superseriousbusiness/exif-terminator/jpeg.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/superseriousbusiness/exif-terminator/jpeg.go b/vendor/github.com/superseriousbusiness/exif-terminator/jpeg.go index 224a9b646..e3da53d54 100644 --- a/vendor/github.com/superseriousbusiness/exif-terminator/jpeg.go +++ b/vendor/github.com/superseriousbusiness/exif-terminator/jpeg.go @@ -23,7 +23,7 @@ import ( "fmt" "io" - jpegstructure "github.com/dsoprea/go-jpeg-image-structure/v2" + jpegstructure "github.com/superseriousbusiness/go-jpeg-image-structure/v2" ) var markerLen = map[byte]int{ |