diff --git a/onionr/api.py b/onionr/api.py index 1ce5eca9..d0407388 100755 --- a/onionr/api.py +++ b/onionr/api.py @@ -239,16 +239,6 @@ class API: resp = Response('Goodbye') elif action == 'ping': resp = Response('pong') - '''#TODO Remove and replace with iframe - elif action == 'site': - block = data - siteData = self._core.getData(data) - response = 'not found' - if siteData != '' and siteData != False: - self.mimeType = 'text/html' - response = siteData.split(b'-', 2)[-1] - resp = Response(response) - ''' elif action == "insertBlock": response = {'success' : False, 'reason' : 'An unknown error occurred'}