Fix moveFiles for zip files (#3608)

This commit is contained in:
DingDongSoLong4
2023-03-29 00:28:11 +02:00
committed by GitHub
parent 046fd1c0be
commit a8f9310c0f
5 changed files with 109 additions and 12 deletions

View File

@@ -35,7 +35,6 @@ type SceneReaderWriter interface {
type FileReaderWriter interface {
file.Store
file.Finder
Query(ctx context.Context, options models.FileQueryOptions) (*models.FileQueryResult, error)
GetCaptions(ctx context.Context, fileID file.ID) ([]*models.VideoCaption, error)
IsPrimary(ctx context.Context, fileID file.ID) (bool, error)
@@ -43,7 +42,6 @@ type FileReaderWriter interface {
type FolderReaderWriter interface {
file.FolderStore
Find(ctx context.Context, id file.FolderID) (*file.Folder, error)
}
type Repository struct {