tolerate branch idx out of range
Branches can't be deleted at the moment, but this may change in the future.
This commit is contained in:
parent
cb7a483d32
commit
7f2109cf04
@ -1171,7 +1171,10 @@ def extract_update_info(
|
|||||||
) -> UpdateInfo:
|
) -> UpdateInfo:
|
||||||
"Process branches to determine the updated mod time and min/max versions."
|
"Process branches to determine the updated mod time and min/max versions."
|
||||||
branches = info_json["branches"]
|
branches = info_json["branches"]
|
||||||
|
try:
|
||||||
current = branches[current_branch_idx]
|
current = branches[current_branch_idx]
|
||||||
|
except IndexError:
|
||||||
|
current = branches[0]
|
||||||
|
|
||||||
last_mod = 0
|
last_mod = 0
|
||||||
for branch in branches:
|
for branch in branches:
|
||||||
|
Loading…
Reference in New Issue
Block a user