Skip to content

Commit a143d92

Browse files
committed
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
1 parent 92c3ac4 commit a143d92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/print.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
print.plotly <- function(x, ...) {
1111
l <- plotly_POST(x)
1212
if (!is.null(l$url)) {
13-
if (httr::url_ok(l$url) && interactive()) browseURL(l$url)
13+
if (interactive()) browseURL(l$url)
1414
}
1515
# get_figure() instead?
1616
invisible(l)

0 commit comments

Comments
 (0)