fix(tasks): return a correct task identifier if the list does not have a good one set
This commit is contained in:
parent
1a840c8b87
commit
69bd023b62
@ -151,6 +151,9 @@ func (*Task) TableName() string {
|
|||||||
// GetFullIdentifier returns the task identifier if the task has one and the index prefixed with # otherwise.
|
// GetFullIdentifier returns the task identifier if the task has one and the index prefixed with # otherwise.
|
||||||
func (t *Task) GetFullIdentifier() string {
|
func (t *Task) GetFullIdentifier() string {
|
||||||
if t.Identifier != "" {
|
if t.Identifier != "" {
|
||||||
|
if strings.HasPrefix(t.Identifier, "-") {
|
||||||
|
return "#" + strings.TrimPrefix(t.Identifier, "-")
|
||||||
|
}
|
||||||
return t.Identifier
|
return t.Identifier
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user