1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03:00

https links were not working properly on mac and win

This commit is contained in:
Federico Fissore
2015-04-02 09:51:26 +02:00
parent f79a6c5d8b
commit 3a916633b1
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ public class Platform extends processing.app.Platform {
public void openURL(String url) throws Exception {
if (PApplet.javaVersion < 1.6f) {
if (url.startsWith("http://")) {
if (url.startsWith("http")) {
// formerly com.apple.eio.FileManager.openURL(url);
// but due to deprecation, instead loading dynamically
try {