Skip to content

Commit

Permalink
fix(overlays): add showBadges to cchat settings
Browse files Browse the repository at this point in the history
  • Loading branch information
sogehige committed Jun 20, 2022
1 parent 0602a77 commit ec230d3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/registries/overlays.ts
Expand Up @@ -237,6 +237,7 @@ const values = {
type: 'vertical',
hideMessageAfter: 600000,
showTimestamp: true,
showBadges: true,
font: {
family: 'PT Sans',
size: 20,
Expand Down
2 changes: 1 addition & 1 deletion src/services/twitch/calls/getAllStreamTags.ts
@@ -1,9 +1,9 @@
import { rawDataSymbol } from '@twurple/common';
import { getRepository, IsNull } from 'typeorm';

import client from '../api/client';
import { refresh } from '../token/refresh.js';

import { rawDataSymbol } from '~/../node_modules/@twurple/common/lib';
import { TwitchTag, TwitchTagLocalizationDescription, TwitchTagLocalizationName } from '~/database/entity/twitch';
import { getFunctionName } from '~/helpers/getFunctionName';
import { error, warning } from '~/helpers/log';
Expand Down
3 changes: 2 additions & 1 deletion src/services/twitch/calls/getCurrentStreamTags.ts
@@ -1,4 +1,5 @@
import { rawDataSymbol } from '../../../../node_modules/@twurple/common/lib';
import { rawDataSymbol } from '@twurple/common';

import client from '../api/client';
import { refresh } from '../token/refresh.js';

Expand Down
2 changes: 1 addition & 1 deletion src/services/twitch/calls/getTopClips.ts
@@ -1,7 +1,7 @@
import { shuffle } from '@sogebot/ui-helpers/array';
import { DAY } from '@sogebot/ui-helpers/constants';
import { HelixClip } from '@twurple/api';

import { HelixClip } from '../../../../node_modules/@twurple/api/lib';
import client from '../api/client';
import { refresh } from '../token/refresh.js';
import { getGameNameFromId } from './getGameNameFromId';
Expand Down
2 changes: 1 addition & 1 deletion src/services/twitch/pubsub.ts
@@ -1,11 +1,11 @@
import { setInterval } from 'timers';

import { MINUTE } from '@sogebot/ui-helpers/constants';
import { rawDataSymbol } from '@twurple/common';
import { PubSubClient } from '@twurple/pubsub';

import { CustomAuthProvider } from './token/CustomAuthProvider.js';

import { rawDataSymbol } from '~/../node_modules/@twurple/common/lib';
import { isStreamOnline } from '~/helpers/api';
import { eventEmitter } from '~/helpers/events';
import {
Expand Down

0 comments on commit ec230d3

Please sign in to comment.