Fix not returning errors
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2020-04-11 15:14:17 +02:00
parent 3cf39916d7
commit 1638bfd3b8
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 3 additions and 0 deletions

View File

@ -129,6 +129,9 @@ func (tf *TaskCollection) ReadAll(a web.Auth, search string, page int, perPage i
}
taskopts.filters, err = getTaskFiltersByCollections(tf)
if err != nil {
return
}
shareAuth, is := a.(*LinkSharing)
if is {