Enable other quokka directives

This commit is contained in:
Claudio Ortolina
2025-06-14 20:10:22 +03:00
parent 1d78f6c4dc
commit 124d539cec
2 changed files with 2 additions and 7 deletions
+1 -6
View File
@@ -24,12 +24,7 @@ defmodule LastFm.API.ErrorResponse do
Returns true if the error is retryable, false otherwise.
"""
def retryable_error?(error)
when error in [
:transient_error,
:service_offline,
:rate_limit_exceeded,
:operation_failed
],
when error in [:transient_error, :service_offline, :rate_limit_exceeded, :operation_failed],
do: true
def retryable_error?(_error), do: false