mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 02:26:21 +00:00
fix: no actualizar si el contenido estaba cacheado
This commit is contained in:
parent
ceeb0009ef
commit
e50ae70ebb
1 changed files with 3 additions and 1 deletions
|
@ -22,7 +22,9 @@ class ActivityPub
|
||||||
|
|
||||||
# @todo Fallar cuando la respuesta no funcione?
|
# @todo Fallar cuando la respuesta no funcione?
|
||||||
return unless response.ok?
|
return unless response.ok?
|
||||||
return if response.miss? && object.content.present?
|
# Ignorar si ya la caché fue revalidada y ya teníamos el
|
||||||
|
# contenido
|
||||||
|
return if response.hit? && object.content.present?
|
||||||
|
|
||||||
current_type = object.type
|
current_type = object.type
|
||||||
content = FastJsonparser.parse(response.body)
|
content = FastJsonparser.parse(response.body)
|
||||||
|
|
Loading…
Reference in a new issue