1c53a565a7
Can be enabled by setting PHOTOPRISM_RESAMPLE_UNCACHED to true Signed-off-by: Michael Mayer <michael@liquidbytes.net>
9 lines
101 B
Go
9 lines
101 B
Go
package thumb
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrThumbNotCached = errors.New("thumbnail not cached")
|
|
)
|