feat: Send voice messages from web

This commit is contained in:
Krille 2024-08-06 11:55:01 +02:00
commit 47481eb676
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
2 changed files with 31 additions and 5 deletions

View file

@ -29,7 +29,7 @@ abstract class PlatformInfos {
static bool get usesTouchscreen => !isMobile;
static bool get platformCanRecord => (isMobile || isMacOS);
static bool get platformCanRecord => (isMobile || isMacOS || isWeb);
static String get clientName =>
'${AppConfig.applicationName} ${isWeb ? 'web' : Platform.operatingSystem}${kReleaseMode ? '' : 'Debug'}';