Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6448f4ec97 | ||
|
|
829bb080ee | ||
|
|
5edd7cf05a |
1
.github/ISSUE_TEMPLATE/bug_report.md
vendored
1
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -17,6 +17,7 @@ If applicable, add screenshots to help explain your problem.
|
|||||||
(Add a X between brackets to make them ticked)
|
(Add a X between brackets to make them ticked)
|
||||||
- OS: [e.g:. Windows 10, Mac OS X 10.13, ...]
|
- OS: [e.g:. Windows 10, Mac OS X 10.13, ...]
|
||||||
- [ ] I'm using the latest version of Crunchy
|
- [ ] I'm using the latest version of Crunchy
|
||||||
|
- [ ] I have a premium accrount on CR
|
||||||
- Serie you get a problem with (and specify which episode if it is specific to one):
|
- Serie you get a problem with (and specify which episode if it is specific to one):
|
||||||
- The command line you are running Crunchy with:
|
- The command line you are running Crunchy with:
|
||||||
- The message Crunchy is giving you, if any:
|
- The message Crunchy is giving you, if any:
|
||||||
|
|||||||
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "crunchy",
|
"name": "crunchy",
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=5.0"
|
"node": ">=5.0"
|
||||||
},
|
},
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"bin": {
|
"bin": {
|
||||||
"crunchy": "./bin/crunchy",
|
"crunchy": "./bin/crunchy",
|
||||||
"crunchy.sh": "./bin/crunchy.sh"
|
"crunchy.sh": "./bin/crunchy.sh"
|
||||||
|
|||||||
@@ -66,16 +66,18 @@ export default function(args: string[], done: (err?: Error) => void)
|
|||||||
{
|
{
|
||||||
if (tasksArr[i].retry <= 0)
|
if (tasksArr[i].retry <= 0)
|
||||||
{
|
{
|
||||||
console.error(err);
|
console.error(errin);
|
||||||
log.error('Cannot get episodes from "' + tasksArr[i].address + '", please rerun later');
|
log.error('Cannot get episodes from "' + tasksArr[i].address + '", please rerun later');
|
||||||
|
/* Go to the next on the list */
|
||||||
|
i += 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (config.verbose)
|
if (config.verbose)
|
||||||
{
|
{
|
||||||
console.error(err);
|
console.error(errin);
|
||||||
}
|
}
|
||||||
log.warn('Retrying to fetch episodes ' + tasksArr[i].retry + ' / ' + config.retry);
|
log.warn('Retrying to fetch episodes list from' + tasksArr[i].retry + ' / ' + config.retry);
|
||||||
tasksArr[i].retry -= 1;
|
tasksArr[i].retry -= 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,9 +59,11 @@ export default function(config: IConfig, address: string, done: (err: Error) =>
|
|||||||
if (page.episodes[i].retry <= 0)
|
if (page.episodes[i].retry <= 0)
|
||||||
{
|
{
|
||||||
log.dispEpisode(config.filename, 'Error...', true);
|
log.dispEpisode(config.filename, 'Error...', true);
|
||||||
console.error(err);
|
console.error(errD);
|
||||||
log.error('Cannot fetch episode "s' + page.episodes[i].volume + 'e' + page.episodes[i].episode +
|
log.error('Cannot fetch episode "s' + page.episodes[i].volume + 'e' + page.episodes[i].episode +
|
||||||
'", please rerun later');
|
'", please rerun later');
|
||||||
|
/* Go to the next on the list */
|
||||||
|
i += 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user