We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 60f2fd0 + df3b21a commit ef5b105Copy full SHA for ef5b105
app/components-react/windows/go-live/platforms/FacebookEditStreamInfo.tsx
@@ -130,6 +130,7 @@ class FacebookEditStreamInfoModule {
130
}
131
132
getDestinationOptions(): IListOption<TDestinationType>[] {
133
+ // not sure if the best idea, but we decided to always show "Timeline" option
134
const options: IListOption<TDestinationType>[] = [
135
{
136
value: 'me' as TDestinationType,
@@ -141,10 +142,7 @@ class FacebookEditStreamInfoModule {
141
142
label: $t('Share to a Page You Manage'),
143
image: 'https://slobs-cdn.streamlabs.com/media/fb-page.png',
144
},
- ].filter(opt => {
145
- if (opt.value === 'me' && !this.canStreamToTimeline) return false;
146
- return true;
147
- });
+ ];
148
return options;
149
150
0 commit comments