From 954d054c65748bb72b10216645ced6be832cacc0 Mon Sep 17 00:00:00 2001 From: March 7th <71698422+aiko-chan-ai@users.noreply.github.com> Date: Tue, 16 Aug 2022 18:48:47 +0700 Subject: [PATCH] docs: fix ReferenceError: createStream is not defined --- Document/VoiceCall.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document/VoiceCall.md b/Document/VoiceCall.md index b59f7f3..8ab822c 100644 --- a/Document/VoiceCall.md +++ b/Document/VoiceCall.md @@ -403,7 +403,7 @@ class Player extends EventEmitter { if (!this._previousSongs.length) throw new Error('No previous songs'); const previousSong = this._previousSongs.pop(); this.song = previousSong; - await createStream(this.song.url); + await this.reateStream(this.song.url); await this.joinVC(); this._play(); this.emit(Event.PLAY_SONG, this.song, this.queue);