Skip to content

Commit

Permalink
Fix call log query paramters
Browse files Browse the repository at this point in the history
  • Loading branch information
codello committed Oct 14, 2024
1 parent 9429f63 commit 9562cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybell/reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ func (r *CallLogReader) nextPage() error {
r.i = 0

query := url.Values{}
query.Set("s", strconv.FormatInt(r.Start.Unix(), 10))
query.Set("e", strconv.FormatInt(r.End.Unix(), 10))
query.Set("start", strconv.FormatInt(r.Start.Unix(), 10))
query.Set("end", strconv.FormatInt(r.End.Unix(), 10))
query.Set("page", strconv.Itoa(r.curPage))

if r.PageSize > 0 {
Expand Down

0 comments on commit 9562cff

Please sign in to comment.