forked from AkkomaGang/akkoma
Allow max_id to be at the end of the querystring
This commit is contained in:
parent
7956cfb091
commit
650c0c0f62
1 changed files with 1 additions and 1 deletions
|
@ -1883,7 +1883,7 @@ test "favorites paginate correctly" do
|
||||||
|
|
||||||
# Using the header for pagination works correctly
|
# Using the header for pagination works correctly
|
||||||
[next, _] = get_resp_header(result, "link") |> hd() |> String.split(", ")
|
[next, _] = get_resp_header(result, "link") |> hd() |> String.split(", ")
|
||||||
[_, max_id] = Regex.run(~r/max_id=([^&]+)/, next)
|
[_, max_id] = Regex.run(~r/max_id=([^&>]+)/, next)
|
||||||
|
|
||||||
assert max_id == third_favorite.id
|
assert max_id == third_favorite.id
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue