mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 14:48:41 +00:00
fix null pointer
Some checks failed
Flutter analyze & test / flutter_analyze_and_test (push) Has been cancelled
Some checks failed
Flutter analyze & test / flutter_analyze_and_test (push) Has been cancelled
This commit is contained in:
parent
e17e39ef41
commit
7007e7b063
2 changed files with 2 additions and 2 deletions
|
|
@ -145,6 +145,6 @@ class MemoriesViewState extends State<MemoriesView> {
|
||||||
// reverseTransitionDuration: Duration.zero,
|
// reverseTransitionDuration: Duration.zero,
|
||||||
),
|
),
|
||||||
) as bool?;
|
) as bool?;
|
||||||
setState(() {});
|
if (mounted) setState(() {});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ description: "twonly, a privacy-friendly way to connect with friends through sec
|
||||||
|
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 0.0.78+78
|
version: 0.0.79+79
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.6.0
|
sdk: ^3.6.0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue