diff --git a/go.mod b/go.mod index 7c7514fa8..122903338 100644 --- a/go.mod +++ b/go.mod @@ -14,6 +14,7 @@ require ( github.com/denisenkom/go-mssqldb v0.10.0 // indirect github.com/dhowden/tag v0.0.0-20200412032933-5d76b8eaae27 github.com/disintegration/imaging v1.6.2 + github.com/djherbis/atime v1.1.0 github.com/djherbis/fscache v0.10.2-0.20201024185917-a0daa9e52747 github.com/dustin/go-humanize v1.0.0 github.com/fatih/structs v1.1.0 @@ -48,7 +49,7 @@ require ( golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8 golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d golang.org/x/tools v0.1.7 - gopkg.in/djherbis/atime.v1 v1.0.0 + gopkg.in/djherbis/atime.v1 v1.0.0 // indirect gopkg.in/djherbis/stream.v1 v1.3.1 ) diff --git a/go.sum b/go.sum index 6c961f9a1..aa141d4c7 100644 --- a/go.sum +++ b/go.sum @@ -189,6 +189,8 @@ github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZm github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/disintegration/imaging v1.6.2 h1:w1LecBlG2Lnp8B3jk5zSuNqd7b4DXhcjwek1ei82L+c= github.com/disintegration/imaging v1.6.2/go.mod h1:44/5580QXChDfwIclfc/PCwrr44amcmDAg8hxG0Ewe4= +github.com/djherbis/atime v1.1.0 h1:rgwVbP/5by8BvvjBNrbh64Qz33idKT3pSnMSJsxhi0g= +github.com/djherbis/atime v1.1.0/go.mod h1:28OF6Y8s3NQWwacXc5eZTsEsiMzp7LF8MbXE+XJPdBE= github.com/djherbis/fscache v0.10.2-0.20201024185917-a0daa9e52747 h1:bA5vjwEwlH3A5zJON9SIUcpcIH5uE42rfRICa+O5JTw= github.com/djherbis/fscache v0.10.2-0.20201024185917-a0daa9e52747/go.mod h1:yyPYtkNnnPXsW+81lAcQS6yab3G2CRfnPLotBvtbf0c= github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= diff --git a/utils/cache/spread_fs.go b/utils/cache/spread_fs.go index a109623ae..ee9c34530 100644 --- a/utils/cache/spread_fs.go +++ b/utils/cache/spread_fs.go @@ -8,9 +8,9 @@ import ( "path/filepath" "strings" + "github.com/djherbis/atime" "github.com/djherbis/fscache" "github.com/navidrome/navidrome/log" - "gopkg.in/djherbis/atime.v1" "gopkg.in/djherbis/stream.v1" )