From 8d3f51e52894d46a4a92a944bc09f4ceaa1abf51 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Mon, 6 Nov 2017 10:50:12 +0100 Subject: Fixed folder ID and label generation. Folder ID is now a simple uuid (without sub-string of label) --- lib/folder/folder-pathmap.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/folder/folder-pathmap.go') diff --git a/lib/folder/folder-pathmap.go b/lib/folder/folder-pathmap.go index bc714dd..e200164 100644 --- a/lib/folder/folder-pathmap.go +++ b/lib/folder/folder-pathmap.go @@ -33,7 +33,11 @@ func NewFolderPathMap(gc *xdsconfig.Config) *PathMap { // NewUID Get a UUID func (f *PathMap) NewUID(suffix string) string { - return uuid.NewV1().String() + "_" + suffix + uuid := uuid.NewV1().String() + if len(suffix) > 0 { + uuid += "_" + suffix + } + return uuid } // Add a new folder -- cgit 1.2.3-korg