From 04640d01594ffe980b2c4e780d056c2fbe7e375b Mon Sep 17 00:00:00 2001 From: Suraj Date: Sun, 14 Feb 2016 12:09:47 +0530 Subject: [PATCH] Fixed bug: doesn't show empty category in navigation drawer --- db/files.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/files.go b/db/files.go index 05077e2..5c9c654 100644 --- a/db/files.go +++ b/db/files.go @@ -46,7 +46,7 @@ func GetFileName(token string) (string, error) { //GetCategories will return the list of categories to be //rendered in the template func GetCategories() []types.CategoryCount { - stmt := "select c.name, count(*) from category c left outer join task t where c.id = t.cat_id and t.is_deleted='N' and t.finish_date is null group by name union select name, 0 from category where name not in (select distinct name from task t join category c on t.cat_id = c.id and is_deleted!='Y')" + stmt := "select c.name, count(*) from category c left outer join task t where c.id = t.cat_id and t.is_deleted='N' and t.finish_date is null group by name union select name, 0 from category where name not in (select distinct name from task t join category c on t.cat_id = c.id and is_deleted!='Y'and t.finish_date is null)" rows := database.query(stmt) var categories []types.CategoryCount var category types.CategoryCount