Browse Source

Merge pull request #3529 from genial123/api-fix

Finish non-existent API calls instead of timing out
pull/3176/merge
Ruud Burger 11 years ago
parent
commit
8347da5a58
  1. 1
      couchpotato/api.py

1
couchpotato/api.py

@ -89,6 +89,7 @@ class ApiHandler(RequestHandler):
route = route.strip('/')
if not api.get(route):
self.write('API call doesn\'t seem to exist')
self.finish()
return
# Create lock if it doesn't exist

Loading…
Cancel
Save