mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-23 18:21:55 +01:00
fix lint
This commit is contained in:
parent
84ff83ede0
commit
5d6a88860c
13
src/index.js
13
src/index.js
@ -10,32 +10,31 @@ try {
|
|||||||
handleChannelMessage
|
handleChannelMessage
|
||||||
} = require("./messagehandler");
|
} = require("./messagehandler");
|
||||||
const log = require("loglevel");
|
const log = require("loglevel");
|
||||||
const prefix = require('loglevel-plugin-prefix');
|
const prefix = require("loglevel-plugin-prefix");
|
||||||
const chalk = require('chalk');
|
const chalk = require("chalk");
|
||||||
const colors = {
|
const colors = {
|
||||||
TRACE: chalk.magenta,
|
TRACE: chalk.magenta,
|
||||||
DEBUG: chalk.cyan,
|
DEBUG: chalk.cyan,
|
||||||
INFO: chalk.blue,
|
INFO: chalk.blue,
|
||||||
WARN: chalk.yellow,
|
WARN: chalk.yellow,
|
||||||
ERROR: chalk.red,
|
ERROR: chalk.red
|
||||||
};
|
};
|
||||||
|
|
||||||
log.setLevel(CONFIG["log-level"]);
|
log.setLevel(CONFIG["log-level"]);
|
||||||
|
|
||||||
|
|
||||||
prefix.reg(log);
|
prefix.reg(log);
|
||||||
log.enableAll();
|
log.enableAll();
|
||||||
|
|
||||||
prefix.apply(log, {
|
prefix.apply(log, {
|
||||||
format (level, name, timestamp) {
|
format (level, name, timestamp) {
|
||||||
return `${chalk.gray(`[${timestamp}]`)} ${colors[level.toUpperCase()](level)} ${chalk.green(`${name}:`)}`;
|
return `${chalk.gray(`[${timestamp}]`)} ${colors[level.toUpperCase()](level)} ${chalk.green(`${name}:`)}`;
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
prefix.apply(log.getLogger('critical'), {
|
prefix.apply(log.getLogger("critical"), {
|
||||||
format (level, name, timestamp) {
|
format (level, name, timestamp) {
|
||||||
return chalk.red.bold(`[${timestamp}] ${level} ${name}:`);
|
return chalk.red.bold(`[${timestamp}] ${level} ${name}:`);
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
jellyfinClientManager.init();
|
jellyfinClientManager.init();
|
||||||
|
@ -57,7 +57,6 @@ function startPlaying (voiceconnection = discordclientmanager.getDiscordClient()
|
|||||||
|
|
||||||
getAudioDispatcher().on("finish", () => {
|
getAudioDispatcher().on("finish", () => {
|
||||||
if (isRepeat) {
|
if (isRepeat) {
|
||||||
|
|
||||||
log.debug("repeat and sending following payload as reportPlaybackStopped to the server: ", getStopPayload());
|
log.debug("repeat and sending following payload as reportPlaybackStopped to the server: ", getStopPayload());
|
||||||
jellyfinClientManager.getJellyfinClient().reportPlaybackStopped(getStopPayload());
|
jellyfinClientManager.getJellyfinClient().reportPlaybackStopped(getStopPayload());
|
||||||
startPlaying(voiceconnection, undefined, currentPlayingPlaylistIndex, 0);
|
startPlaying(voiceconnection, undefined, currentPlayingPlaylistIndex, 0);
|
||||||
@ -168,7 +167,6 @@ function previousTrack () {
|
|||||||
* @param {Object=} disconnectVoiceConnection - Optional The voice Connection do disconnect from
|
* @param {Object=} disconnectVoiceConnection - Optional The voice Connection do disconnect from
|
||||||
*/
|
*/
|
||||||
function stop (disconnectVoiceConnection, itemId = getItemId()) {
|
function stop (disconnectVoiceConnection, itemId = getItemId()) {
|
||||||
|
|
||||||
isPaused = true;
|
isPaused = true;
|
||||||
if (interactivemsghandler.hasMessage()) {
|
if (interactivemsghandler.hasMessage()) {
|
||||||
interactivemsghandler.destroy();
|
interactivemsghandler.destroy();
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
function checkJellyfinItemIDRegex (strgintomatch) {
|
function checkJellyfinItemIDRegex (strgintomatch) {
|
||||||
const regexresult = strgintomatch.match(/([0-9]|[a-f]){32}/);
|
const regexresult = strgintomatch.match(/([0-9]|[a-f]){32}/);
|
||||||
if(regexresult)
|
if (regexresult) { return [regexresult[0]]; } else { return undefined; }
|
||||||
return [regexresult[0]];
|
|
||||||
else
|
|
||||||
return undefined;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function ticksToSeconds (ticks) {
|
function ticksToSeconds (ticks) {
|
||||||
|
Loading…
Reference in New Issue
Block a user