Loosen applist XML validation to accept empty app names
This matches the behavior of the Android and iOS clients. Fixes #1921
This commit is contained in:
+3
-1
@@ -25,7 +25,9 @@ public:
|
||||
|
||||
bool isInitialized()
|
||||
{
|
||||
return id != 0 && !name.isEmpty();
|
||||
// We use isNull() instead of isEmpty() here because we want
|
||||
// to detect cases where the name is unassigned, not empty.
|
||||
return id != 0 && !name.isNull();
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user