1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-22 22:43:22 +00:00

Fix compilation issue

This commit is contained in:
Pierre HUBERT 2019-04-27 17:34:24 +02:00
parent 852064e82d
commit b02315cf09

View File

@ -23,5 +23,5 @@ class ConversationSettings {
bool get hasName => name != null && name.length > 0;
bool get hasId => id != null & id > 0;
bool get hasId => id != null && id > 0;
}