mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-24 04:59:26 +01:00
fix: set avatar
This commit is contained in:
parent
01f6b5e0d3
commit
839b0d042b
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user