don't use masto-stream names
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
bad0b9ac7f
commit
9e331f8b9b
1 changed files with 2 additions and 2 deletions
|
@ -145,7 +145,7 @@ export const connectUserStream = () =>
|
|||
* @return {function(): void}
|
||||
*/
|
||||
export const connectDomainStream = (domain, { onlyMedia, withoutMedia, withoutBot } = {}) =>
|
||||
connectTimelineStream(`domain${withoutBot ? ':nobot' : ':bot'}${withoutMedia ? ':nomedia' : ''}${onlyMedia ? ':media' : ''}:${domain}`, `public:domain${withoutBot ? ':nobot' : ':bot'}${withoutMedia ? ':nomedia' : ''}${onlyMedia ? ':media' : ''}`, { domain: domain });
|
||||
connectTimelineStream(`domain${withoutBot ? ':nobot' : ':bot'}${withoutMedia ? ':nomedia' : ''}${onlyMedia ? ':media' : ''}:${domain}`, 'public', { domain: domain });
|
||||
|
||||
/**
|
||||
* @param {string} id
|
||||
|
@ -167,7 +167,7 @@ export const connectGroupStream = (id, { onlyMedia, withoutMedia, tagged } = {})
|
|||
* @return {function(): void}
|
||||
*/
|
||||
export const connectPublicStream = ({ onlyMedia, withoutMedia, withoutBot, onlyRemote } = {}) =>
|
||||
connectTimelineStream(`public${onlyRemote ? ':remote' : ''}${withoutBot ? ':nobot' : ':bot'}${withoutMedia ? ':nomedia' : ''}${onlyMedia ? ':media' : ''}`, `public${onlyRemote ? ':remote' : ''}${withoutBot ? ':nobot' : ':bot'}${withoutMedia ? ':nomedia' : ''}${onlyMedia ? ':media' : ''}`);
|
||||
connectTimelineStream('public');
|
||||
|
||||
/**
|
||||
* @param {string} columnId
|
||||
|
|
Loading…
Reference in a new issue