Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/components-react/windows/settings/Stream.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,8 @@ export function StreamSettings() {
function disableProtectedMode() {
StreamSettingsService.actions.setSettings({
protectedModeEnabled: false,
key: '',
server: '',
streamType: 'rtmp_common',
});

Expand All @@ -236,6 +238,7 @@ export function StreamSettings() {
StreamSettingsService.actions.setSettings({
protectedModeEnabled: true,
key: '',
server: '',
streamType: 'rtmp_custom',
});
}
Expand Down
3 changes: 2 additions & 1 deletion test/regular/settings/streaming.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ test('Populates stream settings after go live', async t => {
t.pass();
});

test('Populates stream key after go live', async t => {
//Skipping this test because we now clear settings when switching between Recommended Settings and Custom Ingest
test.skip('Populates stream key after go live', async t => {
const user = await logIn(t);

// make sure all required fields are filled for platforms
Expand Down
Loading