increment version number

pull/795/head
ggurdin 2 years ago
parent f58bc1d67d
commit e2248b0c06

@ -598,7 +598,7 @@ class ChatListController extends State<ChatList>
setState(() {}); setState(() {});
// #Pangea // #Pangea
if (archivedActiveRoom) { if (archivedActiveRoom) {
VRouter.of(context).to('/rooms'); context.go('/rooms');
} }
// Pangea# // Pangea#
} }

@ -167,7 +167,7 @@ class _SpaceViewState extends State<SpaceView> {
future: () async { future: () async {
await room!.leave(); await room!.leave();
if (Matrix.of(context).activeRoomId == room.id) { if (Matrix.of(context).activeRoomId == room.id) {
VRouter.of(context).to('/rooms'); context.go('/rooms');
} }
}, },
// Pangea# // Pangea#

@ -106,17 +106,17 @@ class ChatSettingsPopupMenuState extends State<ChatSettingsPopupMenu> {
// ], // ],
// ), // ),
// ), // ),
// PopupMenuItem<String>(
// value: 'todos',
// child: Row(
// children: [
// const Icon(Icons.task_alt_outlined),
// const SizedBox(width: 12),
// Text(L10n.of(context)!.todoLists),
// ],
// ),
// ),
// Pangea# // Pangea#
PopupMenuItem<String>(
value: 'todos',
child: Row(
children: [
const Icon(Icons.task_alt_outlined),
const SizedBox(width: 12),
Text(L10n.of(context)!.todoLists),
],
),
),
PopupMenuItem<String>( PopupMenuItem<String>(
value: 'leave', value: 'leave',
child: Row( child: Row(

Loading…
Cancel
Save