mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-02-17 14:30:40 +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> {
|
class SettingsController extends State<Settings> {
|
||||||
Future<dynamic> profileFuture;
|
Future<dynamic> profileFuture;
|
||||||
dynamic profile;
|
Profile profile;
|
||||||
Future<bool> crossSigningCachedFuture;
|
Future<bool> crossSigningCachedFuture;
|
||||||
bool crossSigningCached;
|
bool crossSigningCached;
|
||||||
Future<bool> megolmBackupCachedFuture;
|
Future<bool> megolmBackupCachedFuture;
|
||||||
@ -197,7 +197,7 @@ class SettingsController extends State<Settings> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void setAvatarAction() async {
|
void setAvatarAction() async {
|
||||||
final action = profile?.avatar == null
|
final action = profile?.avatarUrl == null
|
||||||
? AvatarAction.change
|
? AvatarAction.change
|
||||||
: await showConfirmationDialog<AvatarAction>(
|
: await showConfirmationDialog<AvatarAction>(
|
||||||
context: context,
|
context: context,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user