mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-07 03:07:26 +01:00
Fix redgif schema change
This commit is contained in:
parent
53d2cd14c3
commit
3c77a34e0a
@ -100,7 +100,10 @@ public class FetchGfycatOrRedgifsVideoLinks {
|
||||
protected Void doInBackground(Void... voids) {
|
||||
try {
|
||||
JSONObject jsonObject = new JSONObject(response);
|
||||
webm = jsonObject.getJSONObject(JSONUtils.GFY_ITEM_KEY).getString(JSONUtils.WEBM_URL_KEY);
|
||||
webm = jsonObject.getJSONObject(JSONUtils.GFY_ITEM_KEY)
|
||||
.getJSONObject(JSONUtils.GFY_CONTENT_KEY)
|
||||
.getJSONObject(JSONUtils.WEBM_KEY)
|
||||
.getString(JSONUtils.GFY_URL_KEY);
|
||||
mp4 = jsonObject.getJSONObject(JSONUtils.GFY_ITEM_KEY).getString(JSONUtils.MP4_URL_KEY);
|
||||
} catch (JSONException e) {
|
||||
e.printStackTrace();
|
||||
|
@ -130,4 +130,7 @@ public class JSONUtils {
|
||||
public static final String TOTAL_KARMA_KEY = "total_karma";
|
||||
public static final String AWARDER_KARMA_KEY = "awarder_karma";
|
||||
public static final String AWARDEE_KARMA_KEY = "awardee_karma";
|
||||
public static final String GFY_CONTENT_KEY = "content_urls";
|
||||
public static final String GFY_URL_KEY = "url";
|
||||
public static final String WEBM_KEY = "webm";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user