添加jellyfin client

This commit is contained in:
sifacaii 2022-09-01 11:40:46 +08:00
parent e9ce199952
commit ca068ae05d

View File

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