added missing quotation marks in MediaTypeDeserializer
This commit is contained in:
parent
a55a307b31
commit
d9e0025424
@ -148,11 +148,11 @@ public class Status {
|
||||
public Type deserialize(JsonElement json, java.lang.reflect.Type classOfT, JsonDeserializationContext context)
|
||||
throws JsonParseException {
|
||||
switch(json.toString()) {
|
||||
case "image":
|
||||
case "\"image\"":
|
||||
return Type.IMAGE;
|
||||
case "gifv":
|
||||
case "\"gifv\"":
|
||||
return Type.GIFV;
|
||||
case "video":
|
||||
case "\"video\"":
|
||||
return Type.VIDEO;
|
||||
default:
|
||||
return Type.UNKNOWN;
|
||||
|
Loading…
Reference in New Issue
Block a user