mirror of
https://github.com/tranxuanthang/lrcget.git
synced 2025-12-23 22:58:21 -05:00
Skipping synced lyrics tracks also skips instrumental tracks
This commit is contained in:
@@ -101,7 +101,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted, onUnmounted } from 'vue'
|
||||
import { ref } from 'vue'
|
||||
import { DownloadMultiple, Loading, Check, Cog, Information, DotsVertical, Refresh, FolderMultiple } from 'mdue'
|
||||
import { useDownloader } from '@/composables/downloader.js'
|
||||
import MiniSearch from './MiniSearch.vue'
|
||||
@@ -123,7 +123,7 @@ const downloadAllLyrics = async () => {
|
||||
searchQuery: '',
|
||||
syncedLyricsTracks: !config.skip_tracks_with_synced_lyrics,
|
||||
plainLyricsTracks: !config.skip_tracks_with_plain_lyrics,
|
||||
instrumentalTracks: true,
|
||||
instrumentalTracks: !config.skip_tracks_with_synced_lyrics && !config.skip_tracks_with_plain_lyrics, // Treat instrumental tracks as either synced or plain lyrics tracks
|
||||
noLyricsTracks: true,
|
||||
})
|
||||
addToQueue(downloadTrackIds)
|
||||
|
||||
Reference in New Issue
Block a user