Fix linter issues and update ytdl-core

This commit is contained in:
Preston 2020-12-18 09:59:12 -05:00
parent b2402ee635
commit 49ef1e2047
3 changed files with 8 additions and 8 deletions

6
package-lock.json generated
View File

@ -18731,9 +18731,9 @@
"integrity": "sha512-MH9xq4gxR54oktdPnkMXftKJ7aqp3iCDURKjEg/5NBoCPsOZUGFMtyAaVUBVNQsoAg1Dd0vxEPinbC/aJa/InQ=="
},
"ytdl-core": {
"version": "4.1.7",
"resolved": "https://registry.npmjs.org/ytdl-core/-/ytdl-core-4.1.7.tgz",
"integrity": "sha512-y0n0yejRIHljs8xM4v5SLB1WZeEhx4ZGJMEGHJurimu0ISqP91au+kFH8w9t31dWBca6hkhhnpFcFIz2xu2g4Q==",
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/ytdl-core/-/ytdl-core-4.2.0.tgz",
"integrity": "sha512-DYXdooKcok4yuAHg6YdcSppGBWleBQ5nwxFDXArLv3Iiu0GcsfDQdJEjz2zm0oHA292mMyaRb17EYGdcU8D3hw==",
"requires": {
"m3u8stream": "^0.8.3",
"miniget": "^4.0.0",

View File

@ -47,7 +47,7 @@
"yt-dash-manifest-generator": "^1.1.0",
"yt-trending-scraper": "^1.0.4",
"yt-xml2vtt": "^1.1.3",
"ytdl-core": "^4.1.7",
"ytdl-core": "^4.2.0",
"ytpl": "^2.0.3",
"ytsr": "^3.0.0"
},

View File

@ -5,35 +5,35 @@
</h2>
<ft-flex-box class="radioFlexBox">
<ft-radio-button
ref="sortByRadio"
:title="$t('Search Filters.Sort By.Sort By')"
:labels="sortByLabels"
:values="sortByValues"
class="searchRadio"
ref="sortByRadio"
@change="updateSortBy"
/>
<ft-radio-button
ref="timeRadio"
:title="$t('Search Filters.Time.Time')"
:labels="timeLabels"
:values="timeValues"
class="searchRadio"
ref="timeRadio"
@change="updateTime"
/>
<ft-radio-button
ref="typeRadio"
:title="$t('Search Filters.Type.Type')"
:labels="typeLabels"
:values="typeValues"
class="searchRadio"
ref="typeRadio"
@change="updateType"
/>
<ft-radio-button
ref="durationRadio"
:title="$t('Search Filters.Duration.Duration')"
:labels="durationLabels"
:values="durationValues"
class="searchRadio"
ref="durationRadio"
@change="updateDuration"
/>
</ft-flex-box>