mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-06 16:33:52 +01:00
7 lines
No EOL
181 B
JavaScript
7 lines
No EOL
181 B
JavaScript
module.exports = {
|
|
onError:function (error) {
|
|
//If you want details of the error in the console
|
|
console.log(error.toString());
|
|
this.emit('end');
|
|
}
|
|
}
|