mirror of https://github.com/Kylart/KawAnime.git
Fixed downloader
This commit is contained in:
parent
b44c200f59
commit
31580c68b7
|
@ -104,7 +104,7 @@
|
|||
y: 'top',
|
||||
copiedSnackbar: false,
|
||||
copiedTimeout: 2500,
|
||||
quality: this.$store.state.downloaderForm.quality
|
||||
quality: this.$store.state.config.config.quality
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
@ -141,7 +141,7 @@
|
|||
|
||||
this.$store.commit('setQuality', quality)
|
||||
|
||||
if (this.$store.state.downloaderForm.name) { this.$store.dispatch('download') }
|
||||
this.$store.dispatch('download')
|
||||
|
||||
this.$store.commit('setDownloaderValues', {
|
||||
name: '',
|
||||
|
|
|
@ -273,9 +273,9 @@ export default {
|
|||
const untilEp = state.downloaderForm.untilEp !== ''
|
||||
? state.downloaderForm.untilEp
|
||||
: 20000
|
||||
const quality = isDownloader ? state.downloaderForm.quality : state.config.quality
|
||||
const quality = isDownloader ? state.downloaderForm.quality : state.config.config.quality
|
||||
|
||||
const magnets = state.config.magnets
|
||||
const magnets = state.config.config.magnets
|
||||
|
||||
log(`Received a request to download ${name} from ep ${fromEp} to ep ${untilEp}. Transmitting...`)
|
||||
|
||||
|
@ -284,7 +284,7 @@ export default {
|
|||
quality: quality,
|
||||
fromEp: +fromEp,
|
||||
untilEp: +untilEp,
|
||||
fansub: state.config.fansub,
|
||||
fansub: state.config.config.fansub,
|
||||
choice: 'si'
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue