Merge pull request 'lcg bump; selected conversation sanity null;' (#533) from lcgBump into trunk
continuous-integration/drone/push Build is pending Details

Reviewed-on: #533
This commit is contained in:
Sarah Jamie Lewis 2022-09-09 19:22:31 +00:00
commit 76c925d874
3 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
2022-08-16-10-59-v1.8.0-12-gf1de9b1
2022-09-09-14-10-v1.8.0-25-ge0d2c22

View File

@ -1 +1 @@
2022-08-16-14-59-v1.8.0-12-gf1de9b1
2022-09-09-18-09-v1.8.0-25-ge0d2c22

View File

@ -42,6 +42,7 @@ class AppState extends ChangeNotifier {
String? get selectedProfile => _selectedProfile;
set selectedProfile(String? newVal) {
this._selectedConversation = null;
this._selectedProfile = newVal;
notifyListeners();
}