resume: Fix missing gob register

This commit is contained in:
Richard Patel 2019-02-03 16:32:01 +01:00
parent ef7d17cad4
commit 25d0b0042c
No known key found for this signature in database
GPG Key ID: C268B2BBDA2ABECB

View File

@ -15,6 +15,10 @@ import (
"time"
)
func init() {
gob.Register(&PausedOD{})
}
func LoadResumeTasks(inRemotes chan<- *OD) {
resumed, err := ResumeTasks()
if err != nil {