aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/reporting.go
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/app/reporting.go')
-rw-r--r--dashboard/app/reporting.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/dashboard/app/reporting.go b/dashboard/app/reporting.go
index ad55ac6c3..965cb79a4 100644
--- a/dashboard/app/reporting.go
+++ b/dashboard/app/reporting.go
@@ -392,6 +392,10 @@ func (bug *Bug) manuallyUpstreamed(name string) bool {
if reporting == nil {
return false
}
+ if reporting.Reported.IsZero() {
+ // Either not reported yet, or fully skipped (if Closed is not empty).
+ return false
+ }
return !reporting.Closed.IsZero() && !reporting.Auto
}