Skip to content

Commit

Permalink
fix(golang-linter): gofmt-ed with -s
Browse files Browse the repository at this point in the history
  • Loading branch information
jeankhawand committed Jul 29, 2023
1 parent 4b63575 commit 63f67eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions database/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,6 @@ var migrations = []func(tx *sql.Tx) error{
_, err = tx.Exec(sql)
return err
},

func(tx *sql.Tx) (err error) {
sql := `
ALTER TABLE integrations ADD COLUMN apprise_enabled bool default 'f';
Expand All @@ -733,5 +732,5 @@ var migrations = []func(tx *sql.Tx) error{
`
_, err = tx.Exec(sql)
return err
},
},
}
2 changes: 1 addition & 1 deletion storage/integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ func (s *Storage) UpdateIntegration(integration *model.Integration) error {
integration.NotionPageID,
integration.ReadwiseEnabled,
integration.ReadwiseAPIKey,
integration.AppriseEnabled,
integration.AppriseEnabled,
integration.AppriseURL,
integration.AppriseServicesURL,
integration.UserID,
Expand Down

0 comments on commit 63f67eb

Please sign in to comment.