Skip to content

Commit 656f879

Browse files
committed
backends/eopkg: Ensure issued == updated in get_update_detail()
We don't modify metadata in any way once the package exists in the index
1 parent 8273170 commit 656f879

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

backends/eopkg/eopkgBackend.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -725,9 +725,8 @@ def get_update_detail(self, package_ids):
725725
updated = "{}-{}-{}T00:00:00Z".format(
726726
split_date[0], split_date[1], split_date[2]
727727
)
728-
# TODO: The index only stores the last 10 history entries.
729-
# What is the difference between issued and updated?
730-
issued = ""
728+
# Note: updates are always fixed
729+
issued = updated
731730

732731
self.update_detail(
733732
package_id,

0 commit comments

Comments
 (0)