Don't save meta files in details
This commit is contained in:
parent
777e6fba34
commit
e914567e71
@ -10,9 +10,12 @@ func IsMetadataFile(p path.Path) bool {
|
|||||||
case path.OneDriveService:
|
case path.OneDriveService:
|
||||||
return metadata.HasMetaSuffix(p.Item())
|
return metadata.HasMetaSuffix(p.Item())
|
||||||
|
|
||||||
case path.SharePointService, path.GroupsService:
|
case path.SharePointService:
|
||||||
return p.Category() == path.LibrariesCategory && metadata.HasMetaSuffix(p.Item())
|
return p.Category() == path.LibrariesCategory && metadata.HasMetaSuffix(p.Item())
|
||||||
|
|
||||||
|
case path.GroupsService:
|
||||||
|
return p.Category() == path.LibrariesCategory && metadata.HasMetaSuffix(p.Item()) ||
|
||||||
|
p.Category() == path.ConversationPostsCategory && metadata.HasMetaSuffix(p.Item())
|
||||||
default:
|
default:
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user