Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.

Commit

Permalink
fix: use new import syntax for "export default"
Browse files Browse the repository at this point in the history
  • Loading branch information
sapkra committed Dec 12, 2021
1 parent 53b269f commit 5bdb00b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion JitsiConference.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ import {
createJingleEvent,
createP2PEvent
} from './service/statistics/AnalyticsEvents';
import * as XMPPEvents from './service/xmpp/XMPPEvents';
import XMPPEvents from './service/xmpp/XMPPEvents';

const logger = getLogger(__filename);

Expand Down
2 changes: 1 addition & 1 deletion modules/RTC/TraceablePeerConnection.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as MediaType from '../../service/RTC/MediaType';
import RTCEvents from '../../service/RTC/RTCEvents';
import * as SignalingEvents from '../../service/RTC/SignalingEvents';
import { getSourceNameForJitsiTrack } from '../../service/RTC/SignalingLayer';
import * as VideoType from '../../service/RTC/VideoType';
import VideoType from '../../service/RTC/VideoType';
import { SS_DEFAULT_FRAME_RATE } from '../RTC/ScreenObtainer';
import browser from '../browser';
import FeatureFlags from '../flags/FeatureFlags';
Expand Down
2 changes: 1 addition & 1 deletion modules/statistics/AvgRTPStatsReporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import isEqual from 'lodash.isequal';

import * as ConferenceEvents from '../../JitsiConferenceEvents';
import * as MediaType from '../../service/RTC/MediaType';
import * as VideoType from '../../service/RTC/VideoType';
import VideoType from '../../service/RTC/VideoType';
import * as ConnectionQualityEvents
from '../../service/connectivity/ConnectionQualityEvents';
import {
Expand Down

0 comments on commit 5bdb00b

Please sign in to comment.