Minor code simplification for Containers api

This commit is contained in:
Xiuming Chen 2013-11-13 01:29:00 -08:00
parent 3885ef585b
commit 0013aa7d9f
1 changed files with 2 additions and 5 deletions

View File

@ -464,14 +464,11 @@ func (srv *Server) Containers(all, size bool, n int, since, before string) []API
if !container.State.Running && !all && n == -1 && since == "" && before == "" {
continue
}
if before != "" {
if before != "" && !foundBefore {
if container.ID == before || utils.TruncateID(container.ID) == before {
foundBefore = true
continue
}
if !foundBefore {
continue
}
continue
}
if displayed == n {
break