Skip to content

Commit

Permalink
chore: delete unused screencast hacks (#3964)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s authored Sep 24, 2020
1 parent 76d08ce commit 989709b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/channelOwner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export abstract class ChannelOwner<T extends channels.Channel = channels.Channel
const base = new EventEmitter();
this._channel = new Proxy(base, {
get: (obj: any, prop) => {
if (String(prop).startsWith('_') && String(prop) !== '_enableScreencast' && String(prop) !== '_disableScreencast')
if (String(prop).startsWith('_'))
return obj[prop];
if (prop === 'then')
return obj.then;
Expand Down

0 comments on commit 989709b

Please sign in to comment.