From dfbc28421117c9900a559042f18941f19b2439d7 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Fri, 27 Feb 2026 16:48:27 +0000 Subject: [PATCH] Increase timeout when scrobbling tracks --- lib/last_fm/api.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/last_fm/api.ex b/lib/last_fm/api.ex index a191e690..a2202af3 100644 --- a/lib/last_fm/api.ex +++ b/lib/last_fm/api.ex @@ -47,7 +47,7 @@ defmodule LastFm.API do config |> new_request() - |> Req.merge(url: "/", form: body) + |> Req.merge(url: "/", form: body, receive_timeout: 5_000) |> post_request() end