skip build download button if empty

pull/1/head
simon 2 years ago
parent 9f91991432
commit 1c4d476f36
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -134,7 +134,9 @@ document.addEventListener("DOMContentLoaded", async () => {
});
browserType.storage.local.get("youtube", function(result) {
downlodButton(result);
if (result.youtube) {
downlodButton(result);
}
})
})

Loading…
Cancel
Save