All commands and some events finished
diff --git a/src/utils/database.ts b/src/utils/database.ts
index a62e148..1e8e990 100644
--- a/src/utils/database.ts
+++ b/src/utils/database.ts
@@ -313,6 +313,10 @@
text: null;
link: null;
};
+ nick: {
+ text: string | null;
+ link: string | null;
+ }
};
tracks: {
name: string;
diff --git a/src/utils/log.ts b/src/utils/log.ts
index 4565251..d4e2a82 100644
--- a/src/utils/log.ts
+++ b/src/utils/log.ts
@@ -25,7 +25,7 @@
const delta = num2 - num1;
return `${num1} -> ${num2} (${delta > 0 ? "+" : ""}${delta})`;
},
- entry(value: string | number | boolean | null, displayValue: string): { value: string | boolean | null; displayValue: string } {
+ entry(value: string | number | boolean | null | string[], displayValue: string): { value: string | boolean | null | string[]; displayValue: string } {
if (typeof value === "number") value = value.toString();
return { value: value, displayValue: displayValue };
},