From 42d9bf5fee7d58c0a4404966501b04f980365c53 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Thu, 25 Feb 2021 07:44:41 +0100 Subject: [PATCH] fix: Status color --- lib/utils/presence_extension.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/presence_extension.dart b/lib/utils/presence_extension.dart index c9ccc92c..d3f4a274 100644 --- a/lib/utils/presence_extension.dart +++ b/lib/utils/presence_extension.dart @@ -29,10 +29,10 @@ extension PresenceExtension on Presence { case PresenceType.online: return Colors.green; case PresenceType.offline: - return Colors.red; + return Colors.grey; case PresenceType.unavailable: default: - return Colors.grey; + return Colors.red; } } }