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

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:])