fix: sort result from docker hub

This commit is contained in:
椰子 2023-11-13 22:42:59 +08:00
parent a25f67987c
commit fa9aa4e74b

View File

@ -93,6 +93,7 @@ impl DockerTagsFetcher for DockerHubTagsFetcher {
for x in &filtered {
results.push(x.name.clone().unwrap());
}
results.sort();
results
}
}