Skip to content

Commit

Permalink
Merge pull request #47 from nRF24/FixURLAgain
Browse files Browse the repository at this point in the history
Update examples with correct URL
  • Loading branch information
TMRh20 authored Jun 17, 2024
2 parents 590b307 + a49ef05 commit 433ee33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ void connect() {

// Make an HTTP request:
if (host == ascii) {
client.println("GET http://artscene.textfiles.com/asciiart/texthistory.txt HTTP/1.1");
client.println("Host: 208.86.224.90");
client.println("GET /asciiart/texthistory.txt HTTP/1.1");
client.println("Host: artscene.textfiles.com");
} else {
client.println("GET /web/blyad.club/library/litrature/Salvatore,%20R.A/Salvatore,%20R.A%20-%20Icewind%20Dale%20Trilogy%201%20-%20Crystal%20Shard,%20The.txt HTTP/1.1");
client.println("Host: 109.120.203.163");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ void connect() {

// Make an HTTP request:
if (host == ascii) {
client.println("GET http://artscene.textfiles.com/asciiart/texthistory.txt HTTP/1.1");
client.println("Host: 208.86.224.90");
client.println("GET /asciiart/texthistory.txt HTTP/1.1");
client.println("Host: artscene.textfiles.com");
} else {
client.println("GET /web/blyad.club/library/litrature/Salvatore,%20R.A/Salvatore,%20R.A%20-%20Icewind%20Dale%20Trilogy%201%20-%20Crystal%20Shard,%20The.txt HTTP/1.1");
client.println("Host: 109.120.203.163");
Expand Down

0 comments on commit 433ee33

Please sign in to comment.