1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +00:00

Fix name issue

This commit is contained in:
2019-04-25 11:14:05 +02:00
parent c2891c3c84
commit 779333f20a
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ class Conversation extends CacheModel implements Comparable {
super(id: id);
/// Check out whether a conversation has a fixed name or not
bool get has_name => this.name != null;
bool get hasName => this.name != null;
Conversation.fromMap(Map<String, dynamic> map)
: ownerID = map[ConversationTableContract.C_OWNER_ID],