From 88979b35d462516e1765524d70a41c0d26eec911 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Sun, 24 Apr 2022 12:26:22 +0200 Subject: [chore] Update bun and sqlite dependencies (#478) * update bun + sqlite versions * step bun to v1.1.3 --- vendor/github.com/uptrace/bun/internal/flag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vendor/github.com/uptrace/bun/internal') diff --git a/vendor/github.com/uptrace/bun/internal/flag.go b/vendor/github.com/uptrace/bun/internal/flag.go index b42f59df7..22d2db291 100644 --- a/vendor/github.com/uptrace/bun/internal/flag.go +++ b/vendor/github.com/uptrace/bun/internal/flag.go @@ -3,7 +3,7 @@ package internal type Flag uint64 func (flag Flag) Has(other Flag) bool { - return flag&other == other + return flag&other != 0 } func (flag Flag) Set(other Flag) Flag { -- cgit v1.3