I had created an app in Rstudio. It was working fine till last week. This week there's a strange behaviour on "Download" shiny button. Instead of downlading a .csv file with the name I have given, its opening Download.txt that too with error message "Failed with internal server"
Code Snippet:
output$Download <- downloadHandler(
filename = function() {
paste("Harness", Sys.Date(), ".csv", sep="")
}, content = function(file) {
write.csv(wscv, file)
}
)