Kaynağa Gözat

simple usage of x (#3144)

tags/v1.4.0-rc1
Lunny Xiao 6 yıl önce
ebeveyn
işleme
956354885a
1 değiştirilmiş dosya ile 1 ekleme ve 4 silme
  1. 1
    4
      models/attachment.go

+ 1
- 4
models/attachment.go Dosyayı Görüntüle

@@ -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…
İptal
Kaydet