Browse Source

Finish non-existent API calls instead of timing out

pull/3529/head
genial123 11 years ago
parent
commit
12e556e1d1
  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