When doing a reverse-lookup of an image's tag, if the image has multiple tags, the first tag in alphabetical order will be used

This commit is contained in:
Solomon Hykes 2013-03-26 15:30:16 -07:00
Родитель 8da1810975
Коммит 846a9e8963
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -6,6 +6,7 @@ import (
"io/ioutil"
"os"
"path/filepath"
"sort"
"strings"
)
@ -94,6 +95,7 @@ func (store *TagStore) ById() map[string][]string {
byId[id] = []string{name}
} else {
byId[id] = append(byId[id], name)
sort.Strings(byId[id])
}
}
}