From 84b5959aa25a0236ae89bbc2a428db895abc6a8b Mon Sep 17 00:00:00 2001 From: Andre Medeiros Date: Sat, 26 Mar 2022 10:49:18 -0400 Subject: [PATCH] an extra comma... --- internal/repository/postgres_device.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/repository/postgres_device.go b/internal/repository/postgres_device.go index c7b6594..4e2ccdb 100644 --- a/internal/repository/postgres_device.go +++ b/internal/repository/postgres_device.go @@ -175,7 +175,7 @@ func (p *postgresDeviceRepository) SetNotifiable(ctx context.Context, dev *domai UPDATE devices_accounts SET inbox_notifiable = $1, - watcher_notifiable = $2, + watcher_notifiable = $2 WHERE device_id = $3 AND account_id = $4` res, err := p.pool.Exec(ctx, query, inbox, watcher, dev.ID, acct.ID)