mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-25 09:17:44 +00:00
Use smaller gifs to improve load time
// FREEBIE
This commit is contained in:
parent
9170020141
commit
16f277761e
@ -9,15 +9,15 @@ public class GiphyImage {
|
||||
private ImageTypes images;
|
||||
|
||||
public String getGifUrl() {
|
||||
return images.downsized_medium.url;
|
||||
return images.downsized.url;
|
||||
}
|
||||
|
||||
public float getGifAspectRatio() {
|
||||
return (float)images.downsized_medium.width / (float)images.downsized_medium.height;
|
||||
return (float)images.downsized.width / (float)images.downsized.height;
|
||||
}
|
||||
|
||||
public String getStillUrl() {
|
||||
return images.fixed_width_still.url;
|
||||
return images.downsized_still.url;
|
||||
}
|
||||
|
||||
public static class ImageTypes {
|
||||
@ -37,6 +37,10 @@ public class GiphyImage {
|
||||
private ImageData fixed_width_small;
|
||||
@JsonProperty
|
||||
private ImageData downsized_medium;
|
||||
@JsonProperty
|
||||
private ImageData downsized;
|
||||
@JsonProperty
|
||||
private ImageData downsized_still;
|
||||
}
|
||||
|
||||
public static class ImageData {
|
||||
|
Loading…
x
Reference in New Issue
Block a user