lcg bump; selected conversation sanity null;

This commit is contained in:
Dan Ballard 2022-09-09 11:51:21 -07:00
parent 7edc46743f
commit 975983be3c
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();
}