From 7048e869902f58b0e90a7d95f3a2f18609b73e2c Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Sun, 10 Nov 2024 13:07:45 +0000 Subject: [PATCH] Show last 50 scrobbles --- lib/last_fm/api_impl.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/last_fm/api_impl.ex b/lib/last_fm/api_impl.ex index 2aa76587..0903d120 100644 --- a/lib/last_fm/api_impl.ex +++ b/lib/last_fm/api_impl.ex @@ -14,7 +14,7 @@ defmodule LastFm.APIImpl do user: user, api_key: api_key, format: "json", - limit: 20 + limit: 50 ] url = @base_url <> "?" <> URI.encode_query(options)