diff --git a/api/controllers/web/remote_files.py b/api/controllers/web/remote_files.py index 0b8a586d0..cf36ae302 100644 --- a/api/controllers/web/remote_files.py +++ b/api/controllers/web/remote_files.py @@ -12,7 +12,7 @@ from services.file_service import FileService class RemoteFileInfoApi(WebApiResource): @marshal_with(remote_file_info_fields) - def get(self, url): + def get(self, app_model, end_user, url): decoded_url = urllib.parse.unquote(url) try: response = ssrf_proxy.head(decoded_url)