5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-21 22:16:22 +00:00

fix: reindexar desde el principio si cambió el repositorio #17359

This commit is contained in:
f 2024-09-06 13:41:02 -03:00
parent 11e2353c2f
commit f1052d2154
No known key found for this signature in database

View file

@ -46,11 +46,19 @@ class Site
private
# Trae el último commit indexado desde el repositorio
# Trae el último commit indexado desde el repositorio, o si no
# existe, trae el primer commit.
#
# @return [Rugged::Commit]
def indexed_commit
@indexed_commit ||= repository.rugged.lookup(last_indexed_commit)
@indexed_commit ||=
if repository.rugged.exists?(last_indexed_commit)
repository.rugged.lookup(last_indexed_commit)
else
repository.rugged.lookup(
repository.rugged.references[repository.rugged.head.canonical_name].log.first[:id_new]
)
end
end
# Calcula la diferencia entre el último commit indexado y el