Workaround

This commit is contained in:
ろむねこ 2024-06-24 10:33:39 +09:00
parent 2b426703ed
commit 79a04d737b
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -39,7 +39,7 @@ public class ParentDataImpl implements ParentData {
assert parentInfoResponse != null;
parent.setInternalId(responseBody.getId());
parent.setEmail(responseBody.getEmail());
parent.setDisplayName(responseBody.getDisplayName().isEmpty() ? responseBody.getEmail() : responseBody.getDisplayName());
parent.setDisplayName(responseBody.getEmail()); // Workaround
// TODO: 他のプロパティも処理する
return parent;
} catch (IOException e) {