fix: set avatar

This commit is contained in:
Christian Pauly 2021-06-05 09:21:48 +02:00
parent 01f6b5e0d3
commit 839b0d042b
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class Settings extends StatefulWidget {
class SettingsController extends State<Settings> {
Future<dynamic> profileFuture;
dynamic profile;
Profile profile;
Future<bool> crossSigningCachedFuture;
bool crossSigningCached;
Future<bool> megolmBackupCachedFuture;
@ -197,7 +197,7 @@ class SettingsController extends State<Settings> {
}
void setAvatarAction() async {
final action = profile?.avatar == null
final action = profile?.avatarUrl == null
? AvatarAction.change
: await showConfirmationDialog<AvatarAction>(
context: context,