diff options
Diffstat (limited to 'bug/snapshot.go')
-rw-r--r-- | bug/snapshot.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bug/snapshot.go b/bug/snapshot.go index 1004b625..72e673d4 100644 --- a/bug/snapshot.go +++ b/bug/snapshot.go @@ -30,7 +30,7 @@ func (snap *Snapshot) Id() string { // Return the Bug identifier truncated for human consumption func (snap *Snapshot) HumanId() string { - return fmt.Sprintf("%.8s", snap.id) + return FormatHumanID(snap.id) } // Deprecated:should be moved in UI code |