Skip to content

Commit 729b35f

Browse files
committed
[fix] Fixed getting process.
1 parent 76368ff commit 729b35f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/api/core/database/result_v4.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func (b *Base) GetV4JPNICDataReceivedCount(getStartDate, getEndDate string, AsnI
1818
var counter int64
1919
result := b.DB.Table("result_v4list").Select("id", "ip_address", "recep_number").
2020
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)
21+
getStartDate, getEndDate, AsnID, false, false).Count(&counter)
2222
if result.Error != nil {
2323
return counter, result.Error
2424
}

0 commit comments

Comments
 (0)