fix(chore) fix typo

pull/12076/head jitsi-meet_7711
Rokixy 2 years ago committed by GitHub
parent 5790742d53
commit 85d2123fac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      react/features/desktop-picker/functions.js

@ -25,7 +25,7 @@ export function obtainDesktopSources(types, options = {}) {
if (JitsiMeetElectron && JitsiMeetElectron.obtainDesktopStreams) {
JitsiMeetElectron.obtainDesktopStreams(
sources => resolve(_seperateSourcesByType(sources)),
sources => resolve(_separateSourcesByType(sources)),
error => {
logger.error(
`Error while obtaining desktop sources: ${error}`);
@ -54,7 +54,7 @@ export function obtainDesktopSources(types, options = {}) {
* @returns {Object} An object with the sources split into separate arrays based
* on source type.
*/
function _seperateSourcesByType(sources = []) {
function _separateSourcesByType(sources = []) {
const sourcesByType = {
screen: [],
window: []

Loading…
Cancel
Save