Parse title, details, date from file metadata

This commit is contained in:
WithoutPants
2019-08-16 08:47:35 +10:00
parent 39bdede110
commit 79f2902e26
4 changed files with 26 additions and 6 deletions

View File

@@ -1,13 +1,14 @@
package manager
import (
"path/filepath"
"sync"
"github.com/bmatcuk/doublestar"
"github.com/stashapp/stash/pkg/logger"
"github.com/stashapp/stash/pkg/manager/config"
"github.com/stashapp/stash/pkg/models"
"github.com/stashapp/stash/pkg/utils"
"path/filepath"
"sync"
)
func (s *singleton) Scan() {
@@ -34,6 +35,8 @@ func (s *singleton) Scan() {
go task.Start(&wg)
wg.Wait()
}
logger.Info("Finished scan")
}()
}