Improve login, replace deprecated substr calls

This commit is contained in:
Casper Warden
2023-11-29 16:01:50 +00:00
parent 09db20682e
commit 58c5a1a08e
14 changed files with 114 additions and 78 deletions

View File

@@ -152,7 +152,7 @@ export class LLLindenText
}
else
{
return input.substr(index + 1);
return input.substring(index + 1);
}
}
}