mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-10 20:57:25 +01:00
Merge pull request #253 from anonymous-developer-12/master
Fix redgif schema change
This commit is contained in:
commit
a7ab7e514e
@ -100,7 +100,10 @@ public class FetchGfycatOrRedgifsVideoLinks {
|
|||||||
protected Void doInBackground(Void... voids) {
|
protected Void doInBackground(Void... voids) {
|
||||||
try {
|
try {
|
||||||
JSONObject jsonObject = new JSONObject(response);
|
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);
|
mp4 = jsonObject.getJSONObject(JSONUtils.GFY_ITEM_KEY).getString(JSONUtils.MP4_URL_KEY);
|
||||||
} catch (JSONException e) {
|
} catch (JSONException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
@ -130,4 +130,7 @@ public class JSONUtils {
|
|||||||
public static final String TOTAL_KARMA_KEY = "total_karma";
|
public static final String TOTAL_KARMA_KEY = "total_karma";
|
||||||
public static final String AWARDER_KARMA_KEY = "awarder_karma";
|
public static final String AWARDER_KARMA_KEY = "awarder_karma";
|
||||||
public static final String AWARDEE_KARMA_KEY = "awardee_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