reformat expression to be more sane

This commit is contained in:
krawieck 2020-08-31 20:02:51 +02:00
parent e22a3094e4
commit 8c7e7c283b
1 changed files with 2 additions and 2 deletions

View File

@ -235,11 +235,11 @@ class Post extends StatelessWidget {
),
),
if (post.url != null &&
!(whatType(post.url) != MediaType.other) &&
whatType(post.url) == MediaType.other &&
post.thumbnailUrl != null)
Spacer(),
if (post.url != null &&
!(whatType(post.url) != MediaType.other) &&
whatType(post.url) == MediaType.other &&
post.thumbnailUrl != null)
InkWell(
onTap: _openLink,