Replace broadcast instance with SDKContext (#9824)
This commit is contained in:
@@ -158,7 +158,7 @@ export class SdkContextClass {
|
||||
|
||||
public get voiceBroadcastRecordingsStore(): VoiceBroadcastRecordingsStore {
|
||||
if (!this._VoiceBroadcastRecordingsStore) {
|
||||
this._VoiceBroadcastRecordingsStore = VoiceBroadcastRecordingsStore.instance();
|
||||
this._VoiceBroadcastRecordingsStore = new VoiceBroadcastRecordingsStore();
|
||||
}
|
||||
return this._VoiceBroadcastRecordingsStore;
|
||||
}
|
||||
@@ -172,7 +172,7 @@ export class SdkContextClass {
|
||||
|
||||
public get voiceBroadcastPlaybacksStore(): VoiceBroadcastPlaybacksStore {
|
||||
if (!this._VoiceBroadcastPlaybacksStore) {
|
||||
this._VoiceBroadcastPlaybacksStore = VoiceBroadcastPlaybacksStore.instance();
|
||||
this._VoiceBroadcastPlaybacksStore = new VoiceBroadcastPlaybacksStore();
|
||||
}
|
||||
return this._VoiceBroadcastPlaybacksStore;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user