From 9e20d4ecc27f1725e9b979342d62ae9d7fa61da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=A4felfinger?= Date: Tue, 26 Feb 2019 22:51:42 +0100 Subject: [PATCH] removed blocking error message --- internal/app/category.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/category.go b/internal/app/category.go index 611c8df..ce7f40e 100644 --- a/internal/app/category.go +++ b/internal/app/category.go @@ -69,7 +69,7 @@ func createMissingCategories(context *AppContext, missingCategories []string, ex existingCategories[newCategory.Key] = &newCategory } - return errors.New("createMissingCategories: NOT IMPLEMENTED") + return nil } func getNameAndParentId(category string, categories map[string]*category.PiwigoCategory) (string, int, error) {