diff options
| author | Alex Lyon <[email protected]> | 2017-07-13 21:30:00 -0700 |
|---|---|---|
| committer | alex <[email protected]> | 2017-07-14 06:30:00 +0200 |
| commit | 88765d0a978001ff88a1ee12798a725b7f5a90e9 (patch) | |
| tree | d66970df218ac9e9c4aa3b038e56ee6ce7c81292 /src/voice | |
| parent | Fix the doc on `PrivateChannel::name` (diff) | |
| download | serenity-88765d0a978001ff88a1ee12798a725b7f5a90e9.tar.xz serenity-88765d0a978001ff88a1ee12798a725b7f5a90e9.zip | |
Switch to tokio for events (#122)
Diffstat (limited to 'src/voice')
| -rw-r--r-- | src/voice/connection.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/voice/connection.rs b/src/voice/connection.rs index 5bc4f36..801c871 100644 --- a/src/voice/connection.rs +++ b/src/voice/connection.rs @@ -1,7 +1,7 @@ use byteorder::{BigEndian, LittleEndian, ReadBytesExt, WriteBytesExt}; use opus::{ Channels, - CodingMode, + Application as CodingMode, Decoder as OpusDecoder, Encoder as OpusEncoder, packet as opus_packet, |