From c9a3b423024dd5dcbd9bb14053f5069e4182e6fe Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Thu, 13 May 2021 12:40:29 +0200 Subject: [PATCH] change: Use tchncs.de as default homeserver --- lib/config/app_config.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/app_config.dart b/lib/config/app_config.dart index 86dfe078..98f32030 100644 --- a/lib/config/app_config.dart +++ b/lib/config/app_config.dart @@ -5,7 +5,7 @@ abstract class AppConfig { static String get applicationName => _applicationName; static String _applicationWelcomeMessage; static String get applicationWelcomeMessage => _applicationWelcomeMessage; - static String _defaultHomeserver = 'matrix.org'; + static String _defaultHomeserver = 'tchncs.de'; static String get defaultHomeserver => _defaultHomeserver; static String jitsiInstance = 'https://meet.jit.si/'; static double fontSizeFactor = 1.0;