diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-06 10:50:12 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-06 16:00:04 +0100 |
commit | 8d3f51e52894d46a4a92a944bc09f4ceaa1abf51 (patch) | |
tree | 1d4315736ce539c8618f26838d5145a28008ba63 /lib/folder/folder-st-disable.go | |
parent | b1708565ee2b4d725bb98c6b015f16af3d2a097e (diff) |
Fixed folder ID and label generation.
Folder ID is now a simple uuid (without sub-string of label)
Diffstat (limited to 'lib/folder/folder-st-disable.go')
-rw-r--r-- | lib/folder/folder-st-disable.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/folder/folder-st-disable.go b/lib/folder/folder-st-disable.go index f90b776..7b53ca8 100644 --- a/lib/folder/folder-st-disable.go +++ b/lib/folder/folder-st-disable.go @@ -25,7 +25,11 @@ func NewFolderSTDisable(gc *xdsconfig.Config) *STFolderDisable { // NewUID Get a UUID func (f *STFolderDisable) 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 |