diff --git a/lib/pages/comic_page.dart b/lib/pages/comic_page.dart index 5833610..2305e76 100644 --- a/lib/pages/comic_page.dart +++ b/lib/pages/comic_page.dart @@ -288,7 +288,8 @@ class _ComicPageState extends LoadingState onLongPressed: quickFavorite, iconColor: context.useTextColor(Colors.purple), ), - if (comicSource.commentsLoader != null && comic.comments == null) + if (comicSource.commentsLoader != null && + (comic.comments == null || comic.comments!.isEmpty)) _ActionButton( icon: const Icon(Icons.comment), text: (comic.commentsCount ?? 'Comments'.tl).toString(),