添加jellyfin client

This commit is contained in:
sifacaii 2022-09-01 11:38:19 +08:00
parent 92003797db
commit e9ce199952

View File

@ -152,8 +152,8 @@ public class DetailActivity extends BaseActivity implements JAdapter.OnItemClick
} else if (type.equals("Person")){ } else if (type.equals("Person")){
JsonElement ProductionLocations = JfClient.jeFromGson(detailObj,"ProductionLocations"); JsonElement ProductionLocations = JfClient.jeFromGson(detailObj,"ProductionLocations");
String PremiereDate = JfClient.strFromGson(detailObj,"PremiereDate"); String PremiereDate = JfClient.strFromGson(detailObj,"PremiereDate");
tvDetails.append("\n出生日期" +Utils.UtcToLocal(PremiereDate)+"\n"); tvDetails.append("\n出生日期" + Utils.UtcToLocal(PremiereDate)+"\n");
tvDetails.append("出生地:" + ProductionLocations == null ? "" : ProductionLocations.toString()); tvDetails.append("出生地:" + (ProductionLocations == null ? "" : ProductionLocations.toString()));
fillItemsByPerson(Id); fillItemsByPerson(Id);
} }