Skip to content

Commit a97299c

Browse files
committed
Merge pull request #252 from ropensci/remove_httr_url_ok
remove `url_ok` check since it won't work with proxy logins
2 parents 92c3ac4 + a143d92 commit a97299c

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)