mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Don't set default studio image (#887)
This commit is contained in:
@@ -19,15 +19,13 @@ func (r *mutationResolver) StudioCreate(ctx context.Context, input models.Studio
|
||||
var imageData []byte
|
||||
var err error
|
||||
|
||||
if input.Image == nil {
|
||||
input.Image = &models.DefaultStudioImage
|
||||
}
|
||||
|
||||
// Process the base 64 encoded image string
|
||||
if input.Image != nil {
|
||||
_, imageData, err = utils.ProcessBase64Image(*input.Image)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
|
||||
// Populate a new studio from the input
|
||||
currentTime := time.Now()
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
* Re-show preview thumbnail when mousing away from scene card.
|
||||
|
||||
### 🐛 Bug fixes
|
||||
* Don't set default studio image during studio creation.
|
||||
* Fix invalid date tag preventing video file from being scanned.
|
||||
* Fix error when creating movie from scene scrape dialog.
|
||||
* Fix incorrect date timezone.
|
||||
|
||||
Reference in New Issue
Block a user