Browse Source

Fixed opus error check

Fixes #1056
pull/1057/head
Daniel 7 years ago
committed by GitHub
parent
commit
d53c3a6c12
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      discord/opus.py

5
discord/opus.py

@ -49,9 +49,10 @@ def _err_lt(result, func, args):
return result
def _err_ne(result, func, args):
if result.value != 0:
ret = args[-1]._obj
if ret.value != 0:
log.info('error has happened in {0.__name__}'.format(func))
raise OpusError(result.value)
raise OpusError(ret.value)
return result
# A list of exported functions.

Loading…
Cancel
Save