mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Fix UseFileMetadata when scanning (#2138)
This commit is contained in:
@@ -38,6 +38,7 @@ func (t *ScanTask) scanScene() *models.Scene {
|
|||||||
VideoFileCreator: &instance.FFProbe,
|
VideoFileCreator: &instance.FFProbe,
|
||||||
PluginCache: instance.PluginCache,
|
PluginCache: instance.PluginCache,
|
||||||
MutexManager: t.mutexManager,
|
MutexManager: t.mutexManager,
|
||||||
|
UseFileMetadata: t.UseFileMetadata,
|
||||||
}
|
}
|
||||||
|
|
||||||
if s != nil {
|
if s != nil {
|
||||||
|
|||||||
@@ -263,7 +263,7 @@ func (scanner *Scanner) ScanNew(file file.SourceFile) (retScene *models.Scene, e
|
|||||||
|
|
||||||
if scanner.UseFileMetadata {
|
if scanner.UseFileMetadata {
|
||||||
newScene.Details = sql.NullString{String: videoFile.Comment, Valid: true}
|
newScene.Details = sql.NullString{String: videoFile.Comment, Valid: true}
|
||||||
newScene.Date = models.SQLiteDate{String: videoFile.CreationTime.Format("2006-01-02")}
|
_ = newScene.Date.Scan(videoFile.CreationTime)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := scanner.TxnManager.WithTxn(context.TODO(), func(r models.Repository) error {
|
if err := scanner.TxnManager.WithTxn(context.TODO(), func(r models.Repository) error {
|
||||||
|
|||||||
Reference in New Issue
Block a user