Skip to content

Commit

Permalink
Return the generated filetoken from request_file_analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasPietzschmann committed Oct 1, 2024
1 parent 2b00953 commit f5c3f35
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion R/file_analysis.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,8 @@ request_file_analysis <- function(con,
cfg = cfg
)
}
return(send_request_handle_response(con, request))
return(c(
send_request_handle_response(con, request),
list(filetoken = filetoken)
))
}

0 comments on commit f5c3f35

Please sign in to comment.