diff options
Diffstat (limited to 'cache/bug_cache.go')
-rw-r--r-- | cache/bug_cache.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cache/bug_cache.go b/cache/bug_cache.go index b0dbb6cc..4fdc7d62 100644 --- a/cache/bug_cache.go +++ b/cache/bug_cache.go @@ -22,6 +22,10 @@ func (c *BugCache) Snapshot() *bug.Snapshot { return c.bug.Snapshot() } +func (c *BugCache) Id() string { + return c.bug.Id() +} + func (c *BugCache) HumanId() string { return c.bug.HumanId() } |