summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/platform/model/job.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mattermost/platform/model/job.go')
-rw-r--r--vendor/github.com/mattermost/platform/model/job.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/vendor/github.com/mattermost/platform/model/job.go b/vendor/github.com/mattermost/platform/model/job.go
index bcae7a83..b6c68dce 100644
--- a/vendor/github.com/mattermost/platform/model/job.go
+++ b/vendor/github.com/mattermost/platform/model/job.go
@@ -28,8 +28,11 @@ func removeTaskByName(name string) {
delete(tasks, name)
}
-func getTaskByName(name string) *ScheduledTask {
- return tasks[name]
+func GetTaskByName(name string) *ScheduledTask {
+ if task, ok := tasks[name]; ok {
+ return task
+ }
+ return nil
}
func GetAllTasks() *map[string]*ScheduledTask {