Use identifiers from sdk

This commit is contained in:
Christian Pauly 2020-02-10 13:05:11 +01:00
commit 1bf9dbecf6
4 changed files with 7 additions and 7 deletions

View file

@ -104,7 +104,7 @@ class _NewPrivateChatState extends State<_NewPrivateChat> {
@override
Widget build(BuildContext context) {
final String defaultDomain = Matrix.of(context).client.userID.split(":")[1];
final String defaultDomain = Matrix.of(context).client.userID.domain;
return Scaffold(
appBar: AppBar(
title: Text(I18n.of(context).newPrivateChat),
@ -190,7 +190,7 @@ class _NewPrivateChatState extends State<_NewPrivateChat> {
),
title: Text(
foundProfile["display_name"] ??
foundProfile["user_id"].split(":").first.substring(1),
foundProfile["user_id"].localpart,
style: TextStyle(),
maxLines: 1,
),