remove console log

This commit is contained in:
ThatOneCalculator 2022-07-29 00:44:17 -07:00
parent 261e00fcde
commit bcc219566d
2 changed files with 1 additions and 2 deletions

View file

@ -14,7 +14,6 @@
- Personal notes for all accounts
- Non-nyaify cat mode
- Timeline filters
- "Bubble" timeline
- Filter notifications by user
- Build flag to remove NSFW/AI stuff
- [Rat mode?](https://stop.voring.me/notes/933fx97bmd)
@ -33,6 +32,7 @@
- Yarn 3
- Saner defaults
- Recommended instances timeline
- Star as default reaction
- Recommended Instances timeline
- Rosé Pine by default (+ non-themable elements made Rosé Pine)

View file

@ -26,7 +26,6 @@ export default class extends Channel {
private async onNote(note: Packed<'Note'>) {
const meta = await fetchMeta();
console.log(`\n\n\n${meta.recommendedInstances}\n${note.user.host}\n\n\n`);
if (note.user.host !== null && !meta.recommendedInstances.includes(note.user.host)) return;
if (note.visibility !== 'public') return;
if (note.channelId != null && !this.followingChannels.has(note.channelId)) return;