Merge pull request #365 from arabcoders/dev
Some checks failed
Build WebView wrappers / build (amd64, ubuntu-latest) (push) Has been cancelled
Build WebView wrappers / build (amd64, windows-latest) (push) Has been cancelled
Build WebView wrappers / build (arm64, macos-latest) (push) Has been cancelled
Build WebView wrappers / build (arm64, ubuntu-latest) (push) Has been cancelled
Build WebView wrappers / build (arm64, windows-latest) (push) Has been cancelled
Some checks failed
Build WebView wrappers / build (amd64, ubuntu-latest) (push) Has been cancelled
Build WebView wrappers / build (amd64, windows-latest) (push) Has been cancelled
Build WebView wrappers / build (arm64, macos-latest) (push) Has been cancelled
Build WebView wrappers / build (arm64, ubuntu-latest) (push) Has been cancelled
Build WebView wrappers / build (arm64, windows-latest) (push) Has been cancelled
Fixed a bug in DownloadQueue
This commit is contained in:
commit
ffd99e7c09
2 changed files with 16 additions and 1 deletions
|
|
@ -314,7 +314,7 @@ class DownloadQueue(metaclass=Singleton):
|
||||||
await self.processors.acquire()
|
await self.processors.acquire()
|
||||||
try:
|
try:
|
||||||
LOG.info(
|
LOG.info(
|
||||||
f"Processing '{entry.get("title")}: {i}/{playlistCount}' - ID: {etr.get('id')} - Title: {etr.get('title')}"
|
f"Processing '{entry.get('title')}: {i}/{playlistCount}' - ID: {etr.get('id')} - Title: {etr.get('title')}"
|
||||||
)
|
)
|
||||||
|
|
||||||
_status, _msg = ytdlp_reject(entry=etr, yt_params=yt_params)
|
_status, _msg = ytdlp_reject(entry=etr, yt_params=yt_params)
|
||||||
|
|
|
||||||
|
|
@ -339,6 +339,21 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="columns is-multiline" v-if="tasks && tasks.length > 0">
|
||||||
|
<div class="column is-12">
|
||||||
|
<Message title="Tips" class="is-info is-background-info-80" icon="fas fa-info-circle">
|
||||||
|
<span>
|
||||||
|
<ul>
|
||||||
|
<li>If you are adding a big channel or playlist and you want to skip all old videos, please click on
|
||||||
|
<code>Actions > Archive All</code> button to mark all videos as downloaded. otherwise, it will try to
|
||||||
|
download all videos.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</span>
|
||||||
|
</Message>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<ConfirmDialog v-if="dialog_confirm.visible" :visible="dialog_confirm.visible" :title="dialog_confirm.title"
|
<ConfirmDialog v-if="dialog_confirm.visible" :visible="dialog_confirm.visible" :title="dialog_confirm.title"
|
||||||
:message="dialog_confirm.message" :options="dialog_confirm.options" @confirm="dialog_confirm.confirm"
|
:message="dialog_confirm.message" :options="dialog_confirm.options" @confirm="dialog_confirm.confirm"
|
||||||
:html_message="dialog_confirm.html_message" @cancel="dialog_confirm = reset_dialog()" />
|
:html_message="dialog_confirm.html_message" @cancel="dialog_confirm = reset_dialog()" />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue