chore: release v0.2.5

This commit is contained in:
Jack Wills
2023-03-13 22:01:39 +00:00
parent 896ed99d46
commit cb9686cfe8
5 changed files with 33 additions and 30 deletions
+3 -1
View File
@@ -561,7 +561,9 @@ impl AppData {
let id = ContainerId::from(id);
let created = i.created.map_or(0, |i| u64::try_from(i).unwrap_or_default());
let created = i
.created
.map_or(0, |i| u64::try_from(i).unwrap_or_default());
// If container info already in containers Vec, then just update details
if let Some(item) = self.get_container_by_id(&id) {
if item.name != name {