myano / jenni

jenni was a python IRC bot. Project is closed. Try Sopel instead, https://sopel.chat/
https://sopel.chat/
Other
235 stars 101 forks source link

Buffer size limit results in buggy Spotify module #245

Open gju opened 8 years ago

gju commented 8 years ago

Hi,

the recent change in the module proxy.py that limits the receive buffer size of the remote request to 2048 bytes causes the Spotify plugin to not work correctly anymore. Spotify API responses are usually larger than 2048 bytes.

The issue can be fixed by increasing the buffer size to something bigger than 4096 bytes. sed -i s/2048/8192/g proxy.py

Cheers