hotfix reversed logic
All checks were successful
build and deploy kleinTodo / build (push) Successful in 26s
All checks were successful
build and deploy kleinTodo / build (push) Successful in 26s
This commit is contained in:
parent
6e78c1948e
commit
28393ee46e
@ -225,7 +225,7 @@ func (s *BoltStore) GetTodoList(user string, includeDeleted bool) []Todo {
|
||||
if includeDeleted {
|
||||
include = true
|
||||
} else {
|
||||
include = todo.Deleted
|
||||
include = !todo.Deleted
|
||||
}
|
||||
if include {
|
||||
storedTodos = append(storedTodos, todo)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user