Code cleanup

This commit is contained in:
L Maffeo 2018-08-26 17:38:17 +02:00
parent b422e7ed98
commit 39e8a8389b

View file

@ -78,18 +78,5 @@ class SubsonicUpdate(BeetsPlugin):
url = "http://{}:{}/rest/startScan".format(host, port)
response = requests.post(url, params=payload)
# TODO Log an error by the server or success on status code 200
if response.status_code != 200:
self._log.error(u'Generic error, please try again later.')
# elif response.status_code == 30:
# self._log.error(u'Subsonic server not compatible with plugin.')
# elif response.status_code == 40:
# self._log.error(u'Wrong username or password.')
# elif response.status_code == 50:
# self._log.error(u'User not allowed to perform the operation.')
# elif response.status_code == 60:
# self._log.error(u'This feature requires Subsonic Premium.')
# elif response.status_code == 200:
# self._log.info('Operation completed successfully!')
# else:
# self._log.error(u'Unknown error code returned from server.')