Merge branch 'matrixidstringextension-fix-null-check' into 'master'
[MatrixIdStringExtension] Add null check See merge request famedly/famedlysdk!247
This commit is contained in:
commit
4352a5cedb
|
@ -4,6 +4,7 @@ extension MatrixIdExtension on String {
|
||||||
static const int MAX_LENGTH = 255;
|
static const int MAX_LENGTH = 255;
|
||||||
|
|
||||||
bool get isValidMatrixId {
|
bool get isValidMatrixId {
|
||||||
|
if (this?.isEmpty ?? true) return false;
|
||||||
if (this.length > MAX_LENGTH) return false;
|
if (this.length > MAX_LENGTH) return false;
|
||||||
if (!VALID_SIGILS.contains(this.substring(0, 1))) {
|
if (!VALID_SIGILS.contains(this.substring(0, 1))) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -22,5 +23,5 @@ extension MatrixIdExtension on String {
|
||||||
|
|
||||||
String get domain => isValidMatrixId ? this.substring(1).split(":")[1] : null;
|
String get domain => isValidMatrixId ? this.substring(1).split(":")[1] : null;
|
||||||
|
|
||||||
bool equals(String other) => this.toLowerCase() == other.toLowerCase();
|
bool equals(String other) => this?.toLowerCase() == other?.toLowerCase();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue