streamify-audio 2.1.2 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/discord/Manager.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "streamify-audio",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"description": "Dual-mode audio library: HTTP streaming proxy + Discord player (Lavalink alternative). Supports YouTube, Spotify, SoundCloud with audio filters.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
package/src/discord/Manager.js
CHANGED
|
@@ -216,7 +216,7 @@ class Manager extends EventEmitter {
|
|
|
216
216
|
try {
|
|
217
217
|
const player = await this.restoreSession(session.guildId, options);
|
|
218
218
|
if (player) {
|
|
219
|
-
restored.push({ guildId: session.guildId
|
|
219
|
+
restored.push({ guildId: session.guildId });
|
|
220
220
|
}
|
|
221
221
|
} catch (error) {
|
|
222
222
|
log.error('MANAGER', `Failed to restore session ${session.guildId}: ${error.message}`);
|