You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: