Fix double slicing
This commit is contained in:
parent
07918b406f
commit
4a6715be21
1 changed files with 1 additions and 2 deletions
|
@ -111,7 +111,6 @@ export class Link {
|
|||
if (!linkStr.startsWith("#/")) {
|
||||
return null;
|
||||
}
|
||||
linkStr = linkStr.slice(2);
|
||||
|
||||
const linkStrMatrixUrl = fragment.substr(2).startsWith("matrix:") ? fragment.substr(2) : "matrix:"+fragment.substr(2);
|
||||
|
||||
|
@ -135,7 +134,7 @@ export class Link {
|
|||
return link;
|
||||
} catch(e) {} // The fragment was no matrix-URL.
|
||||
|
||||
linkStr = linkStr.substr(2);
|
||||
linkStr = linkStr.slice(2);
|
||||
|
||||
const [identifier, eventId] = linkStr.split("/");
|
||||
|
||||
|
|
Loading…
Reference in a new issue