From 436765a6a2ddf400b6e06c9a7c3283b1351fcbcd Mon Sep 17 00:00:00 2001 From: kim Date: Mon, 28 Apr 2025 11:20:24 +0000 Subject: bump dependencies: minio-go, go-sqlite3, goldmark, otel, x/image/webp (#4075) Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4075 Co-authored-by: kim Co-committed-by: kim --- vendor/github.com/ncruces/go-sqlite3/error.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vendor/github.com/ncruces/go-sqlite3/error.go') diff --git a/vendor/github.com/ncruces/go-sqlite3/error.go b/vendor/github.com/ncruces/go-sqlite3/error.go index 59982eafd..83b057d0d 100644 --- a/vendor/github.com/ncruces/go-sqlite3/error.go +++ b/vendor/github.com/ncruces/go-sqlite3/error.go @@ -75,7 +75,7 @@ func (e *Error) As(err any) bool { // Temporary returns true for [BUSY] errors. func (e *Error) Temporary() bool { - return e.Code() == BUSY + return e.Code() == BUSY || e.Code() == INTERRUPT } // Timeout returns true for [BUSY_TIMEOUT] errors. -- cgit v1.2.3