diff options
| author | Heinrich 'Henrik' Langos <gumbo2000@noreply@mills.io> | 2023-01-21 00:59:40 +0000 |
|---|---|---|
| committer | James Mills <james@mills.io> | 2023-01-21 00:59:40 +0000 |
| commit | 38e94210172ae8b7db448e5285efefc85894d591 (patch) | |
| tree | 3c3a74ded4086738ff1e9a74c1954c69d0a687a0 /app/config.go | |
| parent | eba9db5be52a83e4e94207b0237957eb353ddfff (diff) | |
fix: Add missing config defaut. (#62)
Without this value, and without a corresponding config.json
entry, the thumbnail will not be generated.
Closes prologic/tube#41
Reviewed-on: https://git.mills.io/prologic/tube/pulls/62
Co-authored-by: Heinrich 'Henrik' Langos <gumbo2000@noreply@mills.io>
Co-committed-by: Heinrich 'Henrik' Langos <gumbo2000@noreply@mills.io>
Diffstat (limited to 'app/config.go')
| -rw-r--r-- | app/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/config.go b/app/config.go index 7d886c0..884bb4b 100644 --- a/app/config.go +++ b/app/config.go @@ -85,6 +85,7 @@ func DefaultConfig() *Config { }, Thumbnailer: &ThumbnailerConfig{ Timeout: 60, + PositionFromStart: 3, }, Transcoder: &TranscoderConfig{ Timeout: 300, |
