Преглед на файлове

simple usage of x (#3144)

tags/v1.4.0-rc1
Lunny Xiao преди 6 години
родител
ревизия
956354885a
променени са 1 файла, в които са добавени 1 реда и са изтрити 4 реда
  1. 1
    4
      models/attachment.go

+ 1
- 4
models/attachment.go Целия файл

@@ -31,11 +31,8 @@ type Attachment struct {

// IncreaseDownloadCount is update download count + 1
func (a *Attachment) IncreaseDownloadCount() error {
sess := x.NewSession()
defer sess.Close()

// Update download count.
if _, err := sess.Exec("UPDATE `attachment` SET download_count=download_count+1 WHERE id=?", a.ID); err != nil {
if _, err := x.Exec("UPDATE `attachment` SET download_count=download_count+1 WHERE id=?", a.ID); err != nil {
return fmt.Errorf("increase attachment count: %v", err)
}


Loading…
Отказ
Запис