Skip to content

Commit 4263891

Browse files
authored
removing double the
1 parent f45338b commit 4263891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

matrix-sdk-android/src/main/java/org/matrix/android/sdk/api/session/permalinks/PermalinkParser.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ object PermalinkParser {
5555
.filter { it.isNotEmpty() }
5656
.take(2)
5757

58-
// the the element-based domain permalinks (e.g. https://app.element.io/#/user/@chagai95:matrix.org) don't have the mxid in the first param (like matrix.to does - https://matrix.to/#/@chagai95:matrix.org) but rather in the second after /user/ so /user/mxid
58+
// the element-based domain permalinks (e.g. https://app.element.io/#/user/@chagai95:matrix.org) don't have the mxid in the first param (like matrix.to does - https://matrix.to/#/@chagai95:matrix.org) but rather in the second after /user/ so /user/mxid
5959
var identifier = params.getOrNull(0);
6060
if (identifier.equals("user")) {
6161
identifier = params.getOrNull(1)

0 commit comments

Comments
 (0)