From a143d92d397c88a6f0da6bd3f15173f0e74ba1d0 Mon Sep 17 00:00:00 2001 From: chriddyp Date: Tue, 11 Aug 2015 12:41:54 -0400 Subject: [PATCH] remove `url_ok` check since it won't work with proxy logins and anyways, let the user see the appropriate http status response by visiting the web page --- R/print.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/print.R b/R/print.R index 0dce7a89f1..097757662d 100644 --- a/R/print.R +++ b/R/print.R @@ -10,7 +10,7 @@ print.plotly <- function(x, ...) { l <- plotly_POST(x) if (!is.null(l$url)) { - if (httr::url_ok(l$url) && interactive()) browseURL(l$url) + if (interactive()) browseURL(l$url) } # get_figure() instead? invisible(l)