mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-02 03:08:53 +00:00
Fix wrong setting name for audio preview creation. Remove audio prune setting from admin.
(cherry picked from commit 2db812b)
This commit is contained in:
@@ -370,7 +370,7 @@ class ProcessAdditional
|
||||
if (!$this->pdo->getSetting('ffmpegpath')) {
|
||||
$this->_processAudioSample = $this->_processThumbnails = $this->_processVideo = false;
|
||||
} else {
|
||||
$this->_processAudioSample = ($this->pdo->getSetting('processaudiosample') == 0) ? false : true;
|
||||
$this->_processAudioSample = ($this->pdo->getSetting('saveaudiopreview') == 0) ? false : true;
|
||||
$this->_processThumbnails = ($this->pdo->getSetting('processthumbnails') == 0 ? false : true);
|
||||
$this->_processVideo = ($this->pdo->getSetting('processvideos') == 0) ? false : true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user