Skip to content

Commit d1e01a8

Browse files
authored
Use HTTPS endpoint in example
See #16
1 parent 2a35361 commit d1e01a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/src/main/java/io/tus/android/example/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ protected void onCreate(Bundle savedInstanceState) {
4141
try {
4242
SharedPreferences pref = getSharedPreferences("tus", 0);
4343
client = new TusClient();
44-
client.setUploadCreationURL(new URL("http://master.tus.io/files/"));
44+
client.setUploadCreationURL(new URL("https://master.tus.io/files/"));
4545
client.enableResuming(new TusPreferencesURLStore(pref));
4646
} catch(Exception e) {
4747
showError(e);

0 commit comments

Comments
 (0)