aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ugnich Anton2013-11-19 08:46:14 +0700
committerGravatar Ugnich Anton2013-11-19 08:46:14 +0700
commit8019c7bb6a181d5c36bca40fcbf8b5042d825191 (patch)
treec0e5e94978f3ed6f11962a6cf7bcedfee26a7d18
parente46184f115a5648bc6ba4a9e74a504d2b6b2f027 (diff)
bugfix in URL: "photos"
-rw-r--r--src/com/juick/json/Message.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/juick/json/Message.java b/src/com/juick/json/Message.java
index 70beda88..c765a5d8 100644
--- a/src/com/juick/json/Message.java
+++ b/src/com/juick/json/Message.java
@@ -113,8 +113,8 @@ public class Message {
} else {
JSONObject photo = new JSONObject();
photo.put("thumbnail", "http://i.juick.com/ps/" + fname);
- photo.put("small", "http://i.juick.com/photo-512/" + fname);
- photo.put("medium", "http://i.juick.com/photo-1024/" + fname);
+ photo.put("small", "http://i.juick.com/photos-512/" + fname);
+ photo.put("medium", "http://i.juick.com/photos-1024/" + fname);
json.put("photo", photo);
}
}