diff options
author | CommanderRoot <CommanderRoot@users.noreply.github.com> | 2022-03-23 21:06:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 21:06:37 +0100 |
commit | 480543e8616d50c89dcb23d541eb1aec51f5f201 (patch) | |
tree | 970793d06744fa80e9f570cec07bf88dfd575d68 /app | |
parent | 180540facbb601c9e7f59db1d4c86696ce4fd01e (diff) |
refactor: replace deprecated String.prototype.substr() (#735)
.substr() is deprecated so we replace it with .slice() which works similarily but isn't deprecated
Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/features/app/components/App.js | 4 | ||||
-rw-r--r-- | app/features/welcome/components/Welcome.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/features/app/components/App.js b/app/features/app/components/App.js index c34bbbf..7164b04 100644 --- a/app/features/app/components/App.js +++ b/app/features/app/components/App.js @@ -69,8 +69,8 @@ class App extends Component<*> { */ _listenOnProtocolMessages(event, inputURL: string) { // Remove trailing slash if one exists. - if (inputURL.substr(-1) === '/') { - inputURL = inputURL.substr(0, inputURL.length - 1); // eslint-disable-line no-param-reassign + if (inputURL.slice(-1) === '/') { + inputURL = inputURL.slice(0, -1); // eslint-disable-line no-param-reassign } const conference = createConferenceObjectFromURL(inputURL); diff --git a/app/features/welcome/components/Welcome.js b/app/features/welcome/components/Welcome.js index d5a7090..0dad330 100644 --- a/app/features/welcome/components/Welcome.js +++ b/app/features/welcome/components/Welcome.js @@ -162,7 +162,7 @@ class Welcome extends Component<Props, State> { */ _animateRoomnameChanging(word: string) { let animateTimeoutId; - const roomPlaceholder = this.state.roomPlaceholder + word.substr(0, 1); + const roomPlaceholder = this.state.roomPlaceholder + word.slice(0, 1); if (word.length > 1) { animateTimeoutId |