cleaner handeling of findPlaylists

This commit is contained in:
simon 2021-11-27 12:07:27 +07:00
parent 64c9269ee2
commit b8f7aa3298
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
2 changed files with 7 additions and 3 deletions

View File

@ -228,6 +228,10 @@ def index_channel_playlists(channel_id):
channel_handler = YoutubeChannel(channel_id)
all_playlists = channel_handler.get_all_playlists()
if not all_playlists:
print(f"no playlists found for channel {channel_id}")
return
all_indexed = PendingList().get_all_indexed()
all_youtube_ids = [i["youtube_id"] for i in all_indexed]
@ -255,3 +259,5 @@ def index_channel_playlists(channel_id):
handler = ThumbManager()
missing_playlists = handler.get_missing_playlists()
handler.download_playlist(missing_playlists)
return

View File

@ -224,9 +224,7 @@ function findPlaylists(button) {
// clear button
var message = document.createElement('p');
message.innerText = 'Scraping for playlists in progress';
var toReplace = document.getElementById('find-playlists-button');
toReplace.innerHTML = '';
toReplace.appendChild(message);
document.getElementById("find-playlists-button").replaceWith(message);
}
// delete from file system