mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-03-11 17:45:30 +00:00
Bug Fixing
This commit is contained in:
parent
035ca95c9f
commit
a93a861727
3 changed files with 8 additions and 2 deletions
|
|
@ -6,9 +6,15 @@
|
|||
* }}
|
||||
*/
|
||||
module.exports = (selectString) => {
|
||||
if (!selectString)
|
||||
return {
|
||||
values: [],
|
||||
isSelected: () => false
|
||||
};
|
||||
let parts = selectString.split(',');
|
||||
let select = [];
|
||||
|
||||
|
||||
parts.forEach(part => {
|
||||
if (part.includes('-')) {
|
||||
let splits = part.split('-');
|
||||
|
|
|
|||
2
package-lock.json
generated
2
package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "funimation-downloader-nx",
|
||||
"version": "4.12.1",
|
||||
"version": "4.12.2",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "funimation-downloader-nx",
|
||||
"short_name": "funi",
|
||||
"version": "4.12.1",
|
||||
"version": "4.12.2",
|
||||
"description": "Download videos from Funimation via cli.",
|
||||
"keywords": [
|
||||
"download",
|
||||
|
|
|
|||
Loading…
Reference in a new issue