We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code:
isSpace = MatrixPatterns.isSpaceId(this.roomId.value),
https://github.com/element-hq/element-x-android/blob/main/services/analytics/api/src/main/kotlin/io/element/android/services/analytics/api/extensions/ViewRoomExt.kt#L29
is not correct. isSpaceId returns true for all valid roomId, so the analytics are wrong.
isSpaceId
true
roomId
The text was updated successfully, but these errors were encountered:
Fix analytics: spaceId have the same syntax as roomId. Use MatrixRoom…
46008c2
….isSpace instead of MatrixPatterns.isSpaceId (#2612) Also remoce useless orFalse() calls.
bmarty
Successfully merging a pull request may close this issue.
This code:
https://github.com/element-hq/element-x-android/blob/main/services/analytics/api/src/main/kotlin/io/element/android/services/analytics/api/extensions/ViewRoomExt.kt#L29
is not correct.
isSpaceId
returnstrue
for all validroomId
, so the analytics are wrong.The text was updated successfully, but these errors were encountered: