aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-05-10 13:26:03 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-05-10 13:26:03 -0600
commitbabaebb74236b5a6b750c98fc24fa501b76261fa (patch)
tree9b6f1b581bf4dec402504a69d39c726175c25e37 /app
parentab32dadac8897ca991415b9e0b4851101a60413c (diff)
downloadwiimmfi-watcher-babaebb74236b5a6b750c98fc24fa501b76261fa.tar
wiimmfi-watcher-babaebb74236b5a6b750c98fc24fa501b76261fa.tar.gz
wiimmfi-watcher-babaebb74236b5a6b750c98fc24fa501b76261fa.tar.bz2
removed dev tag from user agent and readme
Diffstat (limited to 'app')
-rw-r--r--app/src/main/java/me/brysonsteck/wiimmfiwatcher/wiimmfi/RoomData.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/wiimmfi/RoomData.java b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/wiimmfi/RoomData.java
index 284b735..64afedc 100644
--- a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/wiimmfi/RoomData.java
+++ b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/wiimmfi/RoomData.java
@@ -92,7 +92,7 @@ public class RoomData {
public void getPlayerLink() {
try {
Document doc = Jsoup.connect("https://wiimmfi.de/stats/mkw")
- .userAgent("Wiimmfi Watcher for Android (https://github.com/brysonsteck/wiimmfi-watcher) (Developer testing)")
+ .userAgent("Wiimmfi Watcher for Android (https://github.com/brysonsteck/wiimmfi-watcher)")
.get();
Element table = doc.select("table").get(0);
Elements rows = table.select("tr");