We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76368ff commit 729b35fCopy full SHA for 729b35f
pkg/api/core/database/result_v4.go
@@ -18,7 +18,7 @@ func (b *Base) GetV4JPNICDataReceivedCount(getStartDate, getEndDate string, AsnI
18
var counter int64
19
result := b.DB.Table("result_v4list").Select("id", "ip_address", "recep_number").
20
Where("get_start_date >= ? AND get_start_date < ? AND asn_id = ? AND is_get = ? AND is_disabled = ?",
21
- getStartDate, getEndDate, AsnID, false, true).Count(&counter)
+ getStartDate, getEndDate, AsnID, false, false).Count(&counter)
22
if result.Error != nil {
23
return counter, result.Error
24
}
0 commit comments