Fix note editor opening on boot

Not sure why this broke with Flutter 2, but the fix is easy enough.
This commit is contained in:
Vishesh Handa
2021-04-14 15:31:32 +02:00
parent dea1596d9f
commit 453c721830

View File

@ -229,7 +229,9 @@ class _JournalAppState extends State<JournalApp> {
void _initShareSubscriptions() {
var handleShare = () {
if (_sharedText == null && _sharedImages == null) {
var noText = _sharedText == null || _sharedText.isEmpty;
var noImages = _sharedImages == null || _sharedImages.isEmpty;
if (noText && noImages) {
return;
}