Skip to content

Commit 5c8c353

Browse files
luigigubellocmaglie
authored andcommitted
Changing URLs from HTTP to HTTPS
I have changed the URLs from `http` to `httpst`. In particular the page `latest.txt` can be reached on both port 80 and port 443.
1 parent b029b2a commit 5c8c353

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/processing/app/UpdateCheck.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
*/
5252
public class UpdateCheck implements Runnable {
5353
Base base;
54-
String downloadURL = tr("http://www.arduino.cc/latest.txt");
54+
String downloadURL = tr("https://www.arduino.cc/latest.txt");
5555

5656
static final long ONE_DAY = 24 * 60 * 60 * 1000;
5757

@@ -116,7 +116,7 @@ public void run() {
116116
options,
117117
options[0]);
118118
if (result == JOptionPane.YES_OPTION) {
119-
Base.openURL(tr("http://www.arduino.cc/en/Main/Software"));
119+
Base.openURL(tr("https://www.arduino.cc/en/Main/Software"));
120120
}
121121
}
122122
}

0 commit comments

Comments
 (0)