fix: simplify null check for gallery subject in GalleryPhotoView

Changed files
+1 -1
lib
+1 -1
lib/widgets/gallery_photo_view.dart
··· 128 128 final gallery = widget.gallery; 129 129 final subject = gallery?.uri; 130 130 final focus = photo.uri; 131 - if (subject == null || focus == null) { 131 + if (subject == null) { 132 132 return; 133 133 } 134 134 // Use the provider's createComment method