mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 04:36:21 +00:00
fix: reindexar desde el principio si cambió el repositorio #17359
This commit is contained in:
parent
11e2353c2f
commit
f1052d2154
1 changed files with 10 additions and 2 deletions
|
@ -46,11 +46,19 @@ class Site
|
||||||
|
|
||||||
private
|
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]
|
# @return [Rugged::Commit]
|
||||||
def indexed_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
|
end
|
||||||
|
|
||||||
# Calcula la diferencia entre el último commit indexado y el
|
# Calcula la diferencia entre el último commit indexado y el
|
||||||
|
|
Loading…
Reference in a new issue