forked from gmp/clip
1
0
Fork 0
This commit is contained in:
Ilya Turkin 2021-02-01 18:09:47 +03:00
parent b265467dc4
commit 0286dc39eb
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ func GetFileList() []string {
return result
} else {
filesStr := ret.String()
arr := strings.Split(filesStr, pb.FilesDelimeter)
arr := strings.Split(filesStr, ns.FilesDelimeter)
for _, item := range arr {
if strings.HasPrefix(item, uriPrefix) {
result = append(result, item[uriPrefixLength:])