Skip to content

Commit

Permalink
Merge pull request #892 from BlueBubblesApp/zach/beta
Browse files Browse the repository at this point in the history
Fixes grey screen when creating a new chat
  • Loading branch information
zlshames committed Jun 18, 2021
2 parents e6e84b9 + a9bad41 commit 5530bbb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ android {
// version code: 1 0114 0 70 64

//noinspection AccidentalOctal
versionCode 11100064
versionCode 11110064
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down
4 changes: 4 additions & 0 deletions assets/changelog/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Below are the last few BlueBubbles App release changelogs

## v1.1.1

* Bug Fix: Fixes grey screen when creating a new chat

## v1.1.0

* New Feature: Adds back button to image viewer
Expand Down
2 changes: 1 addition & 1 deletion lib/layouts/conversation_view/conversation_view_mixin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ mixin ConversationViewMixin<ConversationViewState extends StatefulWidget> on Sta
Widget buildCupertinoTrailing() {
Color fontColor = Theme.of(context).textTheme.headline1.color;
bool manualMark = SettingsManager().settings.enablePrivateAPI && SettingsManager().settings.privateManualMarkAsRead;
bool showManual = !SettingsManager().settings.privateMarkChatAsRead && !widget.chat.isGroup();
bool showManual = !SettingsManager().settings.privateMarkChatAsRead && !(widget.chat?.isGroup() ?? false);
List<Widget> items = [
if (showManual && manualMark && markingAsRead)
Padding(
Expand Down

0 comments on commit 5530bbb

Please sign in to comment.