Fixed #200
This commit is contained in:
parent
80055bde86
commit
87854c95a9
2 changed files with 13 additions and 1 deletions
|
@ -473,6 +473,10 @@ func NewLabel(l *Label) error {
|
|||
|
||||
// GetLabelById returns a label by given ID.
|
||||
func GetLabelById(id int64) (*Label, error) {
|
||||
if id <= 0 {
|
||||
return nil, ErrLabelNotExist
|
||||
}
|
||||
|
||||
l := &Label{Id: id}
|
||||
has, err := orm.Get(l)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue